Separate each condition as separate functions

This commit is contained in:
NT_x86
2022-10-05 17:25:35 +03:00
parent 932de58185
commit 27ac18b503
2 changed files with 34 additions and 7 deletions

View File

@@ -17,5 +17,9 @@ public:
std::string winMessage;
std::string loseMessage;
virtual void PropUpdate(LPPROPGRIDITEM &pItem);
void winCondition();
void loseCondition();
void pauseCondition();
void drawCondition();
void Step(SimTime sdt);
};