aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/Synth.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/Synth.h')
-rw-r--r--Minecraft.World/Synth.h9
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);
+};
+