the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2
3#include "Layer.h"
4
5class LevelType;
6
7class BiomeInitLayer : public Layer
8{
9private:
10 BiomeArray startBiomes;
11
12public:
13 BiomeInitLayer(__int64 seed, shared_ptr<Layer> parent, LevelType *levelType);
14 virtual ~BiomeInitLayer();
15 intArray getArea(int xo, int yo, int w, int h);
16};