summaryrefslogtreecommitdiff
path: root/terrain.h
diff options
context:
space:
mode:
Diffstat (limited to 'terrain.h')
-rw-r--r--terrain.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/terrain.h b/terrain.h
new file mode 100644
index 0000000..88b2277
--- /dev/null
+++ b/terrain.h
@@ -0,0 +1,9 @@
+#ifndef TERRAIN_H
+#define TERRAIN_H
+
+class Terrain {
+ public:
+ static float *generate_heights(int x, int y, int width, int height);
+};
+
+#endif