SBSPSS/source/player/psfloat.h

61 lines
1.3 KiB
C
Raw Normal View History

2001-06-15 22:36:45 +02:00
/*=========================================================================
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 */