26 lines
1.0 KiB
C++
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);
|
||
|
};
|