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