diff options
Diffstat (limited to 'Minecraft.World/Synth.h')
| -rw-r--r-- | Minecraft.World/Synth.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Minecraft.World/Synth.h b/Minecraft.World/Synth.h new file mode 100644 index 00000000..74e68634 --- /dev/null +++ b/Minecraft.World/Synth.h @@ -0,0 +1,9 @@ +#pragma once +class Synth +{ +public: + virtual double getValue(double x, double y) = 0; + + doubleArray create(int width, int height); +}; + |
