This commit is contained in:
parent
3d74ef38c3
commit
aeb95010d3
24 changed files with 7743 additions and 12 deletions
|
@ -5,21 +5,26 @@
|
|||
#ifndef __PLAYER_H__
|
||||
#define __PLAYER_H__
|
||||
|
||||
#include <dstructs.h>
|
||||
#include "Game/Thing.h"
|
||||
#include "Gfx/Skel.h"
|
||||
|
||||
/*****************************************************************************/
|
||||
|
||||
class CPlayer : public CThing
|
||||
{
|
||||
public:
|
||||
CPlayer();
|
||||
virtual ~CPlayer();
|
||||
virtual ~CPlayer();
|
||||
|
||||
void init();
|
||||
void shutdown();
|
||||
void think();
|
||||
void render();
|
||||
|
||||
void Animate();
|
||||
|
||||
protected:
|
||||
|
||||
CSkel Skel;
|
||||
};
|
||||
|
||||
/*****************************************************************************/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue