SBSPSS/source/player/psbutt.h

79 lines
1.6 KiB
C
Raw Normal View History

2001-01-22 18:48:36 +01:00
/*=========================================================================
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:
2001-03-23 21:09:14 +01:00
virtual void enter(class CPlayerModeBasic *_playerMode);
virtual void think(class CPlayerModeBasic *_playerMode);
2001-01-22 18:48:36 +01:00
};
class CPlayerStateButtBounceFall : public CPlayerState
{
2001-01-31 17:53:23 +01:00
public:
2001-03-23 21:09:14 +01:00
virtual void enter(class CPlayerModeBasic *_playerMode);
virtual void think(class CPlayerModeBasic *_playerMode);
2001-01-31 17:53:23 +01:00
2001-01-22 18:48:36 +01:00
};
class CPlayerStateButtBounceLand : public CPlayerState
{
public:
2001-03-23 21:09:14 +01:00
virtual void enter(class CPlayerModeBasic *_playerMode);
virtual void think(class CPlayerModeBasic *_playerMode);
2001-01-22 18:48:36 +01:00
private:
};
/*----------------------------------------------------------------------
Globals
------- */
/*----------------------------------------------------------------------
Functions
--------- */
/*---------------------------------------------------------------------- */
#endif /* __PLAYER_PSBUTT_H__ */
/*===========================================================================
end */