diff options
Diffstat (limited to 'ex01/Zombie.hpp')
| -rw-r--r-- | ex01/Zombie.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ex01/Zombie.hpp b/ex01/Zombie.hpp index 5c96e80..8f539d2 100644 --- a/ex01/Zombie.hpp +++ b/ex01/Zombie.hpp @@ -6,7 +6,7 @@ /* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/02/10 10:26:18 by dkaiser #+# #+# */ -/* Updated: 2025/02/10 11:12:29 by dkaiser ### ########.fr */ +/* Updated: 2025/02/10 11:33:02 by dkaiser ### ########.fr */ /* */ /* ************************************************************************** */ @@ -18,9 +18,11 @@ class Zombie { public: + Zombie(void); Zombie(const std::string &name); ~Zombie(void); void announce(void); + void setName(const std::string &name); private: std::string name; }; |
