This commit is contained in:
Paul 2001-04-04 15:36:27 +00:00
parent c9646ee3e9
commit 6c7ad5a2ef
2 changed files with 146 additions and 0 deletions

63
source/player/pshitgnd.h Normal file
View file

@ -0,0 +1,63 @@
/*=========================================================================
pshitgnd.h
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PLAYER_PSHITGND_H__
#define __PLAYER_PSHITGND_H__
/*----------------------------------------------------------------------
Includes
-------- */
#include "player\pstates.h"
/* Std Lib
------- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
class CPlayerStateHitGround : public CPlayerState
{
public:
void enter(class CPlayerModeBase *_playerMode);
void think(class CPlayerModeBase *_playerMode);
};
/*----------------------------------------------------------------------
Globals
------- */
extern CPlayerStateHitGround s_stateHitGround;
/*----------------------------------------------------------------------
Functions
--------- */
/*---------------------------------------------------------------------- */
#endif /* __PLAYER_PSHITGND_H__ */
/*===========================================================================
end */