the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 14 lines 272 B view raw
1#pragma once 2 3#include "Layer.h" 4 5class DownfallMixerLayer : public Layer 6{ 7private: 8 shared_ptr<Layer> downfall; 9 int layer; 10 11public: 12 DownfallMixerLayer(shared_ptr<Layer> downfall, shared_ptr<Layer> parent, int layer); 13 intArray getArea(int xo, int yo, int w, int h); 14};