SBSPSS/source/player/psfloat.h
Charles 6867ac9812
2001-06-15 20:36:45 +00:00

61 lines
1.3 KiB
C++

/*=========================================================================
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 */