1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#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); };