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