Danbias/Code/GameLogic/Player.h

29 lines
282 B
C++

#ifndef PLAYER_H
#define PLAYER_H
#include "Object.h"
#include "Weapon.h"
namespace GameLogic
{
class Player : public Object
{
public:
Player(void);
~Player(void);
void Update();
void Move();
void Shoot();
private:
int life;
Weapon *weapon;
};
}
#endif