/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Zombie.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/07/15 13:42:27 by bchanot #+# #+# */ /* Updated: 2025/07/15 14:47:35 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #include class Zombie { public: Zombie(std::string name); Zombie(void); ~Zombie(void); void announce(void) const; void setZombie(std::string name); private: std::string _name; }; Zombie *newZombie( std::string name); void randomChump( std::string name ); Zombie *zombieHorde( int N, std::string name );