This commit is contained in:
Paul 2001-05-15 16:48:29 +00:00
parent d4738f9b8a
commit 4eda6e85fe
6 changed files with 45 additions and 20 deletions

View file

@ -191,6 +191,7 @@ public:
virtual void shutdown();
virtual void think(int _frames);
virtual void render();
virtual int dontKillDuringLevelRespawn() {return true;}
virtual void shove(DVECTOR move);
void moveLeft(); // This is only for camera scroll right now..
void moveRight(); // " " " " "
@ -305,7 +306,8 @@ private:
static class CPlayerMode *s_playerModes[NUM_PLAYERMODES];
class CPlayerMode *m_currentPlayerModeClass;
int m_currentMode;
PLAYER_MODE m_currentMode;
PLAYER_MODE m_lastModeBeforeDeath;
private: