/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Zombie.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: fgras-ca +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/12/24 13:23:44 by fgras-ca #+# #+# */ /* Updated: 2023/12/24 13:30:20 by fgras-ca ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef ZOMBIE_HPP # define ZOMBIE_HPP #include class Zombie { public: Zombie(void); ~Zombie(void); void announce(void); void setname(std::string name); private: std::string name; }; Zombie* newZombie(std::string name); void randomChump(std::string name); #endif