/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Zombie.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/11/04 16:03:03 by rparodi #+# #+# */ /* Updated: 2024/12/23 12:36:49 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef ZOMBIE_HPP #define ZOMBIE_HPP #include #include class Zombie { public: Zombie(std::string name); ~Zombie(); void announce(void); private: std::string _name; }; Zombie* newZombie( std::string name ); void randomChump( std::string name ); #endif