aboutsummaryrefslogtreecommitdiff
path: root/cpp01/ex03/ZombieHorde.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp01/ex03/ZombieHorde.hpp')
-rw-r--r--cpp01/ex03/ZombieHorde.hpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/cpp01/ex03/ZombieHorde.hpp b/cpp01/ex03/ZombieHorde.hpp
new file mode 100644
index 0000000..772bcc0
--- /dev/null
+++ b/cpp01/ex03/ZombieHorde.hpp
@@ -0,0 +1,18 @@
+#ifndef ZOMBIE_HORDE_HPP
+# define ZOMBIE_HORDE_HPP
+
+# include "Zombie.hpp"
+
+class ZombieHorde
+{
+ public:
+ ZombieHorde(int size);
+ void announce();
+ ~ZombieHorde();
+
+ private:
+ int horde_size;
+ Zombie **horde;
+};
+
+#endif