26 lines
1.1 KiB
C++
26 lines
1.1 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* :::::::: */
|
|
/* HumanA.hpp :+: :+: */
|
|
/* +:+ */
|
|
/* By: whaffman <whaffman@student.codam.nl> +#+ */
|
|
/* +#+ */
|
|
/* Created: 2025/03/21 16:28:57 by whaffman #+# #+# */
|
|
/* Updated: 2025/04/02 10:56:49 by whaffman ######## odam.nl */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include <string>
|
|
#include "Weapon.hpp"
|
|
|
|
class HumanA
|
|
{
|
|
private:
|
|
std::string name;
|
|
Weapon &weapon;
|
|
HumanA();
|
|
|
|
public:
|
|
HumanA(std::string p_name, Weapon &p_weapon);
|
|
void attack();
|
|
}; |