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 RiverMixerLayer : public Layer
6{
7private:
8 shared_ptr<Layer>biomes;
9 shared_ptr<Layer>rivers;
10
11public:
12 RiverMixerLayer(__int64 seed, shared_ptr<Layer>biomes, shared_ptr<Layer>rivers);
13
14 virtual void init(__int64 seed);
15 virtual intArray getArea(int xo, int yo, int w, int h);
16};