31 lines
643 B
C++
31 lines
643 B
C++
/**************/
|
|
/*** Player ***/
|
|
/**************/
|
|
|
|
#include "system\global.h"
|
|
#include "Game\Thing.h"
|
|
#include "Player\Player.h"
|
|
|
|
/*****************************************************************************/
|
|
void CPlayer::init()
|
|
{
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
void CPlayer::shutdown()
|
|
{
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
void CPlayer::think()
|
|
{
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
void CPlayer::render()
|
|
{
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
|