cpp01/ex03/HumanB.hpp

19 lines
228 B
C++
Raw Permalink Normal View History

2025-05-12 14:00:11 +02:00
#ifndef HUMANB_HPP
#define HUMANB_HPP
#include "Weapon.hpp"
class HumanB {
public:
HumanB(std::string name);
void setWeapon(Weapon &weapon);
void attack(void);
private:
Weapon *weapon;
std::string name;
};
#endif