the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 17 lines 365 B view raw
1#pragma once 2 3#include "Layer.h" 4 5class FuzzyZoomLayer : public Layer 6{ 7public: 8 FuzzyZoomLayer(__int64 seedMixup, shared_ptr<Layer>parent); 9 intArray getArea(int xo, int yo, int w, int h); 10 11protected: 12 int random(int a, int b); 13 int random(int a, int b, int c, int d); 14 15public: 16 static shared_ptr<Layer>zoom(__int64 seed, shared_ptr<Layer>sup, int count); 17};