aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/HellSpringFeature.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/HellSpringFeature.h')
-rw-r--r--Minecraft.World/HellSpringFeature.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/Minecraft.World/HellSpringFeature.h b/Minecraft.World/HellSpringFeature.h
new file mode 100644
index 00000000..a8ffbc00
--- /dev/null
+++ b/Minecraft.World/HellSpringFeature.h
@@ -0,0 +1,14 @@
+#pragma once
+#include "Feature.h"
+
+
+class HellSpringFeature : public Feature
+{
+private:
+ int tile;
+
+public:
+ HellSpringFeature(int tile);
+
+ virtual bool place(Level *level, Random *random, int x, int y, int z);
+}; \ No newline at end of file