From dc032706847335c7e76b26492725939318f5f84e Mon Sep 17 00:00:00 2001 From: Dominik Kaiser Date: Mon, 10 Feb 2025 10:46:17 +0100 Subject: Add and implement Zombie class --- ex00/Zombie.hpp | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'ex00/Zombie.hpp') diff --git a/ex00/Zombie.hpp b/ex00/Zombie.hpp index f7dc6fe..c9f780f 100644 --- a/ex00/Zombie.hpp +++ b/ex00/Zombie.hpp @@ -6,7 +6,23 @@ /* By: dkaiser + +class Zombie +{ + public: + Zombie(const std::string &name); + ~Zombie(void); + void announce(void); + private: + std::string name; +} + +#endif -- cgit v1.2.3