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