/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   HumanA.hpp                                         :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: adjoly <adjoly@student.42angouleme.fr>     +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2024/11/04 19:36:00 by adjoly            #+#    #+#             */
/*   Updated: 2024/11/05 17:51:09 by adjoly           ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#pragma once

#include "Weapon.hpp"
#include <string>

class HumanA {
	private:
		std::string	_name;
		Weapon		&_weapon;
	
	public:
		void		attack(void);

		HumanA(std::string name, Weapon &weapon);
};