Files
42_INT_09_piscine_cpp/d01/ex03/HumanA.hpp
2022-02-06 17:59:33 +01:00

26 lines
276 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 ) const;
private:
std::string _name;
Weapon & _weapon;
};
#endif