2002-05-20 08:59:37 +00:00
|
|
|
/*
|
|
|
|
|
-----------------------------------------------------------------------------
|
2002-09-23 07:35:47 +00:00
|
|
|
File: ScreenSelectGame
|
2002-05-20 08:59:37 +00:00
|
|
|
|
2002-09-23 07:35:47 +00:00
|
|
|
Desc: Switch the current game
|
2002-05-20 08:59:37 +00:00
|
|
|
|
|
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
2002-09-23 07:35:47 +00:00
|
|
|
Chris Danford
|
2002-05-20 08:59:37 +00:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "ScreenOptions.h"
|
|
|
|
|
|
|
|
|
|
class ScreenSelectGame : public ScreenOptions
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
ScreenSelectGame();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void ImportOptions();
|
|
|
|
|
void ExportOptions();
|
|
|
|
|
|
|
|
|
|
void GoToNextState();
|
|
|
|
|
void GoToPrevState();
|
|
|
|
|
};
|