mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-25 07:15:40 +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);
|
|
};
|