This commit is contained in:
parent
b7d08475ef
commit
c432ba1f5f
7 changed files with 65 additions and 21 deletions
26
source/player/player.h
Normal file
26
source/player/player.h
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue