29 lines
301 B
C++
29 lines
301 B
C++
#include "player.h"
|
|||
|
|
|
||
|
|
void Player::Init()
|
||
|
|
{
|
||
|
|
// initalize stats, room location, inventory and item data
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
void Player::LevelUp()
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
void Player::Die()
|
||
|
|
{
|
||
|
|
// Now. You must, die!
|
||
|
|
}
|
||
|
|
|
||
|
|
void Player::TakeDamage(int damageType, float damage)
|
||
|
|
{
|
||
|
|
// Ouch
|
||
|
|
}
|
||
|
|
|
||
|
|
float Player::GetHealth()
|
||
|
|
{
|
||
|
|
|
||
|
|
return 0.0f;
|
||
|
|
}
|