the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 14 lines 324 B view raw
1#pragma once 2#include "Feature.h" 3 4class SpikeFeature : public Feature 5{ 6private: 7 int tile; 8 //int m_iIndex; 9 10public: 11 SpikeFeature(int tile); 12 virtual bool place(Level *level, Random *random, int x, int y, int z); 13 virtual bool placeWithIndex(Level *level, Random *random, int x, int y, int z,int iIndex, int iRadius); 14};