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