summaryrefslogtreecommitdiff
path: root/ex01/Zombie.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'ex01/Zombie.hpp')
-rw-r--r--ex01/Zombie.hpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/ex01/Zombie.hpp b/ex01/Zombie.hpp
new file mode 100644
index 0000000..5c96e80
--- /dev/null
+++ b/ex01/Zombie.hpp
@@ -0,0 +1,30 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* Zombie.hpp :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* 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 */
+/* */
+/* ************************************************************************** */
+
+#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;
+};
+
+Zombie* zombieHorde(int N, std::string name);
+
+#endif