aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/FlatLayer.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/FlatLayer.h')
-rw-r--r--Minecraft.World/FlatLayer.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/Minecraft.World/FlatLayer.h b/Minecraft.World/FlatLayer.h
new file mode 100644
index 00000000..a4592fb0
--- /dev/null
+++ b/Minecraft.World/FlatLayer.h
@@ -0,0 +1,13 @@
+#pragma once
+
+#include "Layer.h"
+
+class FlatLayer : public Layer
+{
+private:
+ int val;
+
+public:
+ FlatLayer(int val);
+ intArray getArea(int xo, int yo, int w, int h);
+}; \ No newline at end of file