This commit is contained in:
Paul 2001-01-22 17:48:36 +00:00
parent b512e83b0b
commit baf02fd535
2 changed files with 237 additions and 0 deletions

81
source/player/psbutt.h Normal file
View file

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