This commit is contained in:
Paul 2001-01-22 19:24:04 +00:00
parent d236bd4b00
commit 080f7bbb17
2 changed files with 148 additions and 0 deletions

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

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