Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
270 B · 17 lines
C
at main
1234567891011121314151617#pragma once
#include "Tile.h"
class SpringTile : public Tile{private: int liquidTileId;
protected: SpringTile(int id, int liquidTileId);
public: void onPlace(Level *level, int x, int y, int z);
void tick(Level *level, int x, int y, int z, Random *random);};