aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/BiomeOverrideLayer.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/BiomeOverrideLayer.h')
-rw-r--r--Minecraft.World/BiomeOverrideLayer.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/Minecraft.World/BiomeOverrideLayer.h b/Minecraft.World/BiomeOverrideLayer.h
new file mode 100644
index 00000000..cfa689ef
--- /dev/null
+++ b/Minecraft.World/BiomeOverrideLayer.h
@@ -0,0 +1,18 @@
+#pragma once
+
+#include "Layer.h"
+
+class LevelType;
+
+class BiomeOverrideLayer : public Layer
+{
+private:
+ static const unsigned int width = 216;
+ static const unsigned int height = 216;
+
+ byteArray m_biomeOverride;
+
+public:
+ BiomeOverrideLayer(int seedMixup);
+ intArray getArea(int xo, int yo, int w, int h);
+}; \ No newline at end of file