Danbias/Code/GameLogic/Player.cpp

29 lines
207 B
C++

#include "Player.h"
using namespace GameLogic;
Player::Player(void)
:Object()
{
life = 10;
}
Player::~Player(void)
{
}
void Player::Update()
{
}
void Player::Move()
{
}
void Player::Shoot()
{
}