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 BiomeOverrideLayer : public Layer
8{
9private:
10 static const unsigned int width = 216;
11 static const unsigned int height = 216;
12
13 byteArray m_biomeOverride;
14
15public:
16 BiomeOverrideLayer(int seedMixup);
17 intArray getArea(int xo, int yo, int w, int h);
18};