/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Zombie.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: erey-bet +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/04/20 13:50:12 by erey-bet #+# #+# */ /* Updated: 2023/04/20 15:56:40 by erey-bet ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef ZOMBIE_HPP # define ZOMBIE_HPP # include # include # include class Zombie { public: Zombie(std::string name); ~Zombie(void); void announce(void); private: std::string name; }; Zombie* newZombie(std::string name); void randomChump(std::string name); #endif