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