fix "solo" selectable in Pump

This commit is contained in:
Chris Danford
2003-09-25 05:56:38 +00:00
parent e220859940
commit 2c38027e6d
10 changed files with 78 additions and 76 deletions
+9 -8
View File
@@ -21,18 +21,19 @@ struct ModeChoice // used in SelectMode
ModeChoice() { Init(); }
void Init();
bool FromString( CString str, bool bIgnoreUnknown=false );
void Load( int iIndex, CString str );
void ApplyToAllPlayers();
void Apply( PlayerNumber pn );
bool DescribesCurrentMode() const;
Game game;
Style style;
PlayMode pm;
Difficulty dc;
CString sAnnouncer;
char name[64];
bool m_bInvalid;
int m_iIndex;
Game m_game;
Style m_style;
PlayMode m_pm;
Difficulty m_dc;
CString m_sAnnouncer;
CString m_sName;
};
#endif