/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Zombie.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: aortigos class Zombie { private: std::string name; public: Zombie(); ~Zombie(); void setName( std::string str ); void announce( void ); }; Zombie* zombieHorde( int N, std::string name ); #endif