aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/PineFeature.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/PineFeature.h')
-rw-r--r--Minecraft.World/PineFeature.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/Minecraft.World/PineFeature.h b/Minecraft.World/PineFeature.h
new file mode 100644
index 00000000..62ded1e4
--- /dev/null
+++ b/Minecraft.World/PineFeature.h
@@ -0,0 +1,8 @@
+#pragma once
+#include "Feature.h"
+
+class PineFeature : public Feature
+{
+public:
+ virtual bool place(Level *level, Random *random, int x, int y, int z);
+};