26 lines
269 B
C++
26 lines
269 B
C++
#ifndef HUMANA_HPP
|
|
# define HUMANA_HPP
|
|
|
|
#include "Weapon.hpp"
|
|
#include <iostream>
|
|
#include <string>
|
|
|
|
class HumanA {
|
|
|
|
public:
|
|
|
|
HumanA( std::string name, Weapon weapon );
|
|
~HumanA();
|
|
|
|
void attack( void );
|
|
|
|
private:
|
|
|
|
std::string _name;
|
|
Weapon * _weapon;
|
|
|
|
};
|
|
|
|
#endif
|
|
|