62 lines
1.2 KiB
C
62 lines
1.2 KiB
C
|
/*=========================================================================
|
||
|
|
||
|
pmcart.h
|
||
|
|
||
|
Author: CRB
|
||
|
Created:
|
||
|
Project: Spongebob
|
||
|
Purpose:
|
||
|
|
||
|
Copyright (c) 2001 Climax Development Ltd
|
||
|
|
||
|
===========================================================================*/
|
||
|
|
||
|
#ifndef __PLAYER_PMCART_H__
|
||
|
#define __PLAYER_PMCART_H__
|
||
|
|
||
|
/*----------------------------------------------------------------------
|
||
|
Includes
|
||
|
-------- */
|
||
|
|
||
|
#ifndef __PLAYER_PMODES_H__
|
||
|
#include "player\pmodes.h"
|
||
|
#endif
|
||
|
|
||
|
|
||
|
/* Std Lib
|
||
|
------- */
|
||
|
|
||
|
/*----------------------------------------------------------------------
|
||
|
Tyepdefs && Defines
|
||
|
------------------- */
|
||
|
|
||
|
/*----------------------------------------------------------------------
|
||
|
Structure defintions
|
||
|
-------------------- */
|
||
|
|
||
|
class CPlayerModeCart : public CPlayerModeBase
|
||
|
{
|
||
|
public:
|
||
|
virtual void enter();
|
||
|
virtual void think();
|
||
|
};
|
||
|
|
||
|
|
||
|
/*----------------------------------------------------------------------
|
||
|
Globals
|
||
|
------- */
|
||
|
|
||
|
/*----------------------------------------------------------------------
|
||
|
Functions
|
||
|
--------- */
|
||
|
|
||
|
/*---------------------------------------------------------------------- */
|
||
|
|
||
|
#endif /* __PLAYER_PMCART_H__ */
|
||
|
|
||
|
/*===========================================================================
|
||
|
end */
|
||
|
|
||
|
|
||
|
|