This commit is contained in:
Paul 2001-06-27 18:06:59 +00:00
parent d0fbc8ce7d
commit f8cbd71c84
2 changed files with 206 additions and 78 deletions

View file

@ -44,12 +44,33 @@ public:
private:
int m_active;
int m_exitPauseMenuFlag;
int m_quitGameFlag;
typedef enum
{
STATE__MAIN_MENU,
STATE__CONFIRM_QUIT,
} STATE;
class CGUIControlFrame *m_guiFrame;
class CGUISpatCountReadout *m_guiSpatReadout;
enum
{
RESPONSE__WAITING,
RESPONSE__CONTINUE,
RESPONSE__QUIT,
RESPONSE__CONFIRM_QUIT_YES,
RESPONSE__CONFIRM_QUIT_NO,
};
void renderLives();
int m_active;
int m_responseFlag;
STATE m_currentState;
class CGUIControlFrame *m_pauseGuiFrame;
class CGUIControlFrame *m_confirmQuitGuiFrame;
class FontBank *m_fontBank;
};