18 lines
188 B
C++
18 lines
188 B
C++
#pragma once
|
|
#include "Header.h"
|
|
#include "Weapon.h"
|
|
|
|
class Player
|
|
{
|
|
public:
|
|
Player();
|
|
~Player();
|
|
private:
|
|
int level;
|
|
int xp;
|
|
Weapon rigth;
|
|
Weapon left;
|
|
vector<Weapon> weapons;
|
|
};
|
|
|