diff options
Diffstat (limited to 'ex00/Zombie.hpp')
| -rw-r--r-- | ex00/Zombie.hpp | 18 |
1 files changed, 17 insertions, 1 deletions
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 <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/02/10 10:26:18 by dkaiser #+# #+# */ -/* Updated: 2025/02/10 10:26:19 by dkaiser ### ########.fr */ +/* Updated: 2025/02/10 10:38:18 by dkaiser ### ########.fr */ /* */ /* ************************************************************************** */ +#ifndef ZOMBIE_H_ +#define ZOMBIE_H_ + +#include <string> + +class Zombie +{ + public: + Zombie(const std::string &name); + ~Zombie(void); + void announce(void); + private: + std::string name; +} + +#endif |
