This commit is contained in:
Paul 2001-07-10 14:43:20 +00:00
parent 95b3458811
commit 7de947bfc2
6 changed files with 46 additions and 22 deletions

View file

@ -37,12 +37,21 @@
class CSaveScene: public CScene
{
public:
void init();
void shutdown();
void render();
void think(int _frames);
int readyToShutdown();
char *getSceneName() {return"Save";}
typedef enum
{
NEXTSCENE_MAP,
NEXTSCENE_PARTY,
}NEXTSCENE;
void init();
void shutdown();
void render();
void think(int _frames);
int readyToShutdown();
char *getSceneName() {return"Save";}
static void setNextScene(NEXTSCENE _next) {s_nextScene=_next;}
private:
@ -87,6 +96,8 @@ private:
int m_timeInMode;
int m_userResponse;
static NEXTSCENE s_nextScene;
};