This commit is contained in:
Paul 2000-11-22 22:52:08 +00:00
parent 06aa78b482
commit 8df9ff4010
8 changed files with 244 additions and 81 deletions

View file

@ -49,13 +49,33 @@ public:
private:
enum
{
MODE__OPTIONS,
MODE__CONTROL,
MODE__SCREEN,
MODE__SOUND,
MODE__COUNT,
};
enum
{
X_BORDER=30,
Y_BORDER=20,
};
class CScrollyBackground *m_background;
class CGUIControlFrame *m_optionsMenu;
class CGUIControlFrame *m_modeMenus[MODE__COUNT];
int m_mode,m_nextMode;
int m_exitFlag;
int m_closingDown;
int m_bgmVolume;
int m_sfxVolume;
int m_speechVolume;
};