You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
381 B
39 lines
381 B
#include "player.h"
|
|
|
|
Player::Player()
|
|
{
|
|
score = 0;
|
|
}
|
|
|
|
int Player::GetScore()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void Player::SetScore(int _score)
|
|
{
|
|
}
|
|
|
|
bool Player::PlayerMove(const Map& wall, int dir)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool Player::TryEatBean(Map& bean)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool Player::TryEatGoldBean(Map& goldBean)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void Player::EatMonster()
|
|
{
|
|
}
|
|
|
|
void Player::DrawScore()
|
|
{
|
|
}
|