This commit is contained in:
Charles 2001-06-15 20:36:45 +00:00
parent c429fd833a
commit 6867ac9812
4 changed files with 280 additions and 0 deletions

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

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