aboutsummaryrefslogtreecommitdiff
path: root/cpp01/ex03/Zombie.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp01/ex03/Zombie.cpp')
-rw-r--r--cpp01/ex03/Zombie.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/cpp01/ex03/Zombie.cpp b/cpp01/ex03/Zombie.cpp
new file mode 100644
index 0000000..2ea23b6
--- /dev/null
+++ b/cpp01/ex03/Zombie.cpp
@@ -0,0 +1,14 @@
+#include <iostream>
+#include "Zombie.hpp"
+
+Zombie::Zombie(std::string n, std::string t)
+{
+ name = n;
+ type = t;
+ announce();
+}
+
+void Zombie::announce()
+{
+ std::cout << "<" << name << " (" << type << ")> Braiiiiiiinnnssss..." << std::endl;
+}