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 ZoomLayer : public Layer
6{
7public:
8 ZoomLayer(__int64 seedMixup, shared_ptr<Layer> parent);
9
10 virtual intArray getArea(int xo, int yo, int w, int h);
11
12protected:
13 int random(int a, int b);
14 int random(int a, int b, int c, int d);
15
16public:
17 static shared_ptr<Layer> zoom(__int64 seed, shared_ptr<Layer>sup, int count);
18};