mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-06-01 12:22:53 +00:00
11 lines
163 B
C++
11 lines
163 B
C++
#pragma once
|
|
class Synth
|
|
{
|
|
public:
|
|
virtual double getValue(double x, double y) = 0;
|
|
virtual ~Synth(){}
|
|
|
|
doubleArray create(int width, int height);
|
|
};
|
|
|