This commit is contained in:
Paul 2001-01-22 20:58:36 +00:00
parent 97a30e89cd
commit 4498d072bf
2 changed files with 230 additions and 0 deletions

78
source/player/psduck.h Normal file
View file

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