/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Zombie.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/11/04 10:52:33 by adjoly #+# #+# */ /* Updated: 2024/11/04 19:22:07 by adjoly ### ########.fr */ /* */ /* ************************************************************************** */ #pragma once # include # define uint8_t unsigned char class Zombie { private: std::string name; public: void announce(void); void setName(std::string newName); Zombie(void); ~Zombie(void); }; Zombie *zombieHorde(int n, std::string name);