1
0
This repository has been archived on 2024-11-25. You can view files and clone it, but cannot push or open issues or pull requests.
CPP_Module_01/ex03/HumanA.hpp

26 lines
1.0 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* HumanA.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/11/04 19:36:00 by adjoly #+# #+# */
/* Updated: 2024/11/04 19:40:02 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#pragma once
#include "Weapon.hpp"
#include <string>
class HumanA {
private:
std::string name;
Weapon weapon;
public:
void attack(void);
};