Files
42_INT_09_piscine_cpp/d01/ex03/HumanA.hpp
2022-02-05 19:14:56 +01:00

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