/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Zombie.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: aortigos class Zombie { private: std::string name; public: Zombie(); ~Zombie(); Zombie(std::string str); void announce( void ); }; Zombie* newZombie( std::string name ); void randomChump( std::string name ); #endif