This commit is contained in:
Paul 2001-01-19 22:54:48 +00:00
parent b8a82dd6fe
commit f7614f78e0
8 changed files with 808 additions and 0 deletions

59
source/player/psrun.h Normal file
View file

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