summaryrefslogtreecommitdiff
path: root/ex01/Zombie.hpp
diff options
context:
space:
mode:
authorDominik Kaiser2025-02-10 11:34:52 +0100
committerDominik Kaiser2025-02-10 11:34:52 +0100
commit1d593b80d53124b96c2fcee1106b6fff88a2375b (patch)
treee4e1563f3036ff3af44efc04b716bc0155fac85b /ex01/Zombie.hpp
parent63f6707447e8377e21b074cab69ad03f019afe9b (diff)
downloadcpp01-1d593b80d53124b96c2fcee1106b6fff88a2375b.tar.gz
cpp01-1d593b80d53124b96c2fcee1106b6fff88a2375b.zip
Add zombieHorde func
Diffstat (limited to 'ex01/Zombie.hpp')
-rw-r--r--ex01/Zombie.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/ex01/Zombie.hpp b/ex01/Zombie.hpp
index 5c96e80..8f539d2 100644
--- a/ex01/Zombie.hpp
+++ b/ex01/Zombie.hpp
@@ -6,7 +6,7 @@
/* 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 */
+/* Updated: 2025/02/10 11:33:02 by dkaiser ### ########.fr */
/* */
/* ************************************************************************** */
@@ -18,9 +18,11 @@
class Zombie
{
public:
+ Zombie(void);
Zombie(const std::string &name);
~Zombie(void);
void announce(void);
+ void setName(const std::string &name);
private:
std::string name;
};