This commit is contained in:
Paul 2001-02-28 16:22:07 +00:00
parent 3c2d4cda32
commit f96db444f5
2 changed files with 197 additions and 0 deletions

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

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