This commit is contained in:
Paul 2000-10-26 16:50:54 +00:00
parent 98a2014037
commit ee30817b75
5 changed files with 34 additions and 20 deletions

View file

@ -110,3 +110,9 @@ void CGameScene::think(int _frames)
}
/*****************************************************************************/
int CGameScene::readyToShutdown()
{
return false;
}
/*****************************************************************************/

View file

@ -18,11 +18,12 @@ public:
virtual ~CGameScene() {;}
void init();
void shutdown();
void render();
void think(int _frames);
char *getSceneName() {return "Game";}
void init();
void shutdown();
void render();
void think(int _frames);
int readyToShutdown();
char *getSceneName() {return "Game";}
private: