mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-19 06:12:54 +00:00
9 lines
163 B
C++
9 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);
|
|
};
|