This commit is contained in:
parent
95b3458811
commit
7de947bfc2
6 changed files with 46 additions and 22 deletions
|
@ -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;
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue