This commit is contained in:
Charles 2001-07-03 20:38:36 +00:00
parent 8b771b9320
commit 6128fbd943
4 changed files with 287 additions and 0 deletions

58
source/player/psswal.h Normal file
View file

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