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};