diff options
Diffstat (limited to 'Minecraft.World/BiomeInitLayer.h')
| -rw-r--r-- | Minecraft.World/BiomeInitLayer.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Minecraft.World/BiomeInitLayer.h b/Minecraft.World/BiomeInitLayer.h new file mode 100644 index 00000000..e645a379 --- /dev/null +++ b/Minecraft.World/BiomeInitLayer.h @@ -0,0 +1,16 @@ +#pragma once + +#include "Layer.h" + +class LevelType; + +class BiomeInitLayer : public Layer +{ +private: + BiomeArray startBiomes; + +public: + BiomeInitLayer(__int64 seed, shared_ptr<Layer> parent, LevelType *levelType); + virtual ~BiomeInitLayer(); + intArray getArea(int xo, int yo, int w, int h); +};
\ No newline at end of file |
