the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 17 lines 270 B view raw
1#pragma once 2 3#include "Tile.h" 4 5class SpringTile : public Tile 6{ 7private: 8 int liquidTileId; 9 10protected: 11 SpringTile(int id, int liquidTileId); 12 13public: 14 void onPlace(Level *level, int x, int y, int z); 15 16 void tick(Level *level, int x, int y, int z, Random *random); 17};