diff options
Diffstat (limited to 'Minecraft.World/HugeMushroomFeature.h')
| -rw-r--r-- | Minecraft.World/HugeMushroomFeature.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Minecraft.World/HugeMushroomFeature.h b/Minecraft.World/HugeMushroomFeature.h new file mode 100644 index 00000000..6523c5fb --- /dev/null +++ b/Minecraft.World/HugeMushroomFeature.h @@ -0,0 +1,13 @@ +#pragma once +#include "Feature.h" + +class HugeMushroomFeature : public Feature +{ +private: + int forcedType; + +public: + HugeMushroomFeature(int forcedType); + HugeMushroomFeature(); + virtual bool place(Level *level, Random *random, int x, int y, int z); +}; |
