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.
208 B · 14 lines
C
at master
1234567891011121314#pragma once#include "Feature.h"
class SpringFeature : public Feature{private: int tile;
public: SpringFeature(int tile);
virtual bool place(Level *level, Random *random, int x, int y, int z);};