#pragma once #include "instance.h" class LevelInstance : public Instance { public: LevelInstance(void); ~LevelInstance(void); float timer; int score; virtual std::vector getProperties(); std::string winMessage; std::string loseMessage; virtual void PropUpdate(LPPROPGRIDITEM &pItem); };