aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/BiomeInitLayer.h
blob: 00bf38124116eb28142deba16f3a9dea55b3727e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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);
};