/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Zombie.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: erey-bet +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/04/20 13:50:12 by erey-bet #+# #+# */ /* Updated: 2023/04/20 16:34:05 by erey-bet ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef ZOMBIE_HPP # define ZOMBIE_HPP # include # include # include class Zombie { public: Zombie(); Zombie(std::string name); ~Zombie(); void announce(void); void setName(std::string name); private: std::string name; }; Zombie* newZombie(std::string name); void randomChump(std::string name); Zombie* zombieHorde(int N, std::string name); #endif