cpp01/ex03/HumanA.hpp

18 lines
210 B
C++
Raw Normal View History

2025-05-12 14:00:11 +02:00
#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