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