This commit is contained in:
Paul 2001-02-12 20:36:56 +00:00
parent 1c435f167f
commit f85742481e
2 changed files with 167 additions and 0 deletions

60
source/player/psfly.h Normal file
View file

@ -0,0 +1,60 @@
/*=========================================================================
psfly.h
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PLAYER_PSFLY_H__
#define __PLAYER_PSFLY_H__
/*----------------------------------------------------------------------
Includes
-------- */
#include "player\pstates.h"
/* Std Lib
------- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
class CPlayerStateFall : public CPlayerState
{
public:
virtual void enter(class CPlayer *_player);
virtual void think(class CPlayer *_player);
};
/*----------------------------------------------------------------------
Globals
------- */
/*----------------------------------------------------------------------
Functions
--------- */
/*---------------------------------------------------------------------- */
#endif /* __PLAYER_PSFLY_H__ */
/*===========================================================================
end */