SBSPSS/source/player/pstates.h

57 lines
1.2 KiB
C
Raw Normal View History

2001-01-19 23:54:48 +01:00
/*=========================================================================
pstates.h
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PLAYER_PSTATES_H__
#define __PLAYER_PSTATES_H__
/*----------------------------------------------------------------------
Includes
-------- */
/* Std Lib
------- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
class CPlayerState
{
public:
2001-03-25 22:36:28 +02:00
virtual void enter(class CPlayerModeBase *_playerMode) {;}
virtual void think(class CPlayerModeBase *_playerMode) {;}
2001-01-19 23:54:48 +01:00
};
/*----------------------------------------------------------------------
Globals
------- */
/*----------------------------------------------------------------------
Functions
--------- */
/*---------------------------------------------------------------------- */
#endif /* __PLAYER_PSTATES_H__ */
/*===========================================================================
end */