Made LevelInstance (DataModel V1.1_01?)

This commit is contained in:
andreja6
2018-10-25 09:45:13 -07:00
parent d7b491e073
commit 62208a14a5
8 changed files with 110 additions and 65 deletions

16
LevelInstance.h Normal file
View File

@@ -0,0 +1,16 @@
#pragma once
#include "instance.h"
class LevelInstance :
public Instance
{
public:
LevelInstance(void);
~LevelInstance(void);
float timer;
int score;
virtual std::vector<PROPGRIDITEM> getProperties();
std::string winMessage;
std::string loseMessage;
virtual void PropUpdate(LPPROPGRIDITEM &pItem);
};