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

27 lines
288 B
C++

#ifndef HUMANB_HPP
# define HUMANB_HPP
#include "Weapon.hpp"
#include <iostream>
#include <string>
class HumanB {
public:
HumanB( std::string name );
~HumanB();
void attack( void );
void setWeapon( Weapon weapon );
private:
std::string _name;
Weapon * _weapon;
};
#endif