diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-02-02 18:05:01 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-02-02 18:05:01 +0100 |
| commit | a5a197590e45494dc31f0d2fc8fb13194b3975c9 (patch) | |
| tree | f3350feda6ac6549a2b5fc4b45d9ca19f86345d0 /cpp01/ex06/HumanB.hpp | |
| parent | 7d6a4c877de8048ec5fbea4a563b3d09c8976105 (diff) | |
| download | piscine_cpp-a5a197590e45494dc31f0d2fc8fb13194b3975c9.tar.gz piscine_cpp-a5a197590e45494dc31f0d2fc8fb13194b3975c9.tar.bz2 piscine_cpp-a5a197590e45494dc31f0d2fc8fb13194b3975c9.zip | |
cpp01 ex05 wip, ex06
Diffstat (limited to 'cpp01/ex06/HumanB.hpp')
| -rw-r--r-- | cpp01/ex06/HumanB.hpp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/cpp01/ex06/HumanB.hpp b/cpp01/ex06/HumanB.hpp new file mode 100644 index 0000000..a01c881 --- /dev/null +++ b/cpp01/ex06/HumanB.hpp @@ -0,0 +1,30 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* HumanB.hpp :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/02/02 16:42:54 by cacharle #+# #+# */ +/* Updated: 2020/02/02 16:54:18 by cacharle ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#ifndef HUMANB_HPP +# define HUMANB_HPP + +# include <iostream> +# include "Weapon.hpp" + +class HumanB +{ + private: + std::string name; + Weapon weapon; + public: + HumanB(std::string name); + void attack(); + void setWeapon(Weapon weapon); +}; + +#endif |
