/*========================================================================= psfall.h Author: PKG Created: Project: Spongebob Purpose: Copyright (c) 2001 Climax Development Ltd ===========================================================================*/ #ifndef __PLAYER_PSFALL_H__ #define __PLAYER_PSFALL_H__ /*---------------------------------------------------------------------- Includes -------- */ #include "player\pstates.h" /* Std Lib ------- */ /*---------------------------------------------------------------------- Tyepdefs && Defines ------------------- */ /*---------------------------------------------------------------------- Structure defintions -------------------- */ class CPlayerStateFall : public CPlayerState { public: void enter(class CPlayerModeBase *_playerMode); void think(class CPlayerModeBase *_playerMode); }; class CPlayerStateFallFar : public CPlayerState { private: void enter(class CPlayerModeBase *_playerMode); void think(class CPlayerModeBase *_playerMode); }; /*---------------------------------------------------------------------- Globals ------- */ extern CPlayerStateFall s_stateFall; extern CPlayerStateFallFar s_stateFallFar; /*---------------------------------------------------------------------- Functions --------- */ /*---------------------------------------------------------------------- */ #endif /* __PLAYER_PSFALL_H__ */ /*=========================================================================== end */