This commit is contained in:
Charles 2001-06-12 16:19:08 +00:00
parent 9e1c863edd
commit 6da99378f2
4 changed files with 340 additions and 0 deletions

58
source/player/pscart.h Normal file
View file

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