This commit is contained in:
Daveo 2001-01-09 20:38:20 +00:00
parent b7d08475ef
commit c432ba1f5f
7 changed files with 65 additions and 21 deletions

26
source/player/player.h Normal file
View file

@ -0,0 +1,26 @@
/**************/
/*** Player ***/
/**************/
#ifndef __PLAYER_H__
#define __PLAYER_H__
#include "Game/Thing.h"
/*****************************************************************************/
class CPlayer : public CThing
{
public:
CPlayer();
virtual ~CPlayer();
void init();
void shutdown();
void think();
void render();
protected:
};
/*****************************************************************************/
#endif