mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-22 07:48:13 +05:00
16 lines
294 B
C++
16 lines
294 B
C++
#pragma once
|
|
|
|
#include "Layer.h"
|
|
|
|
class LevelType;
|
|
|
|
class BiomeInitLayer : public Layer
|
|
{
|
|
private:
|
|
BiomeArray startBiomes;
|
|
|
|
public:
|
|
BiomeInitLayer(int64_t seed, shared_ptr<Layer> parent, LevelType *levelType);
|
|
virtual ~BiomeInitLayer();
|
|
intArray getArea(int xo, int yo, int w, int h);
|
|
}; |