18 lines
210 B
C++
18 lines
210 B
C++
|
|
#ifndef HUMANA_HPP
|
||
|
|
#define HUMANA_HPP
|
||
|
|
|
||
|
|
#include "Weapon.hpp"
|
||
|
|
|
||
|
|
class HumanA {
|
||
|
|
public:
|
||
|
|
HumanA(std::string name, Weapon &weapon);
|
||
|
|
|
||
|
|
void attack(void);
|
||
|
|
|
||
|
|
private:
|
||
|
|
Weapon &weapon;
|
||
|
|
std::string name;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|