/* ************************************************************************** */ /* */ /* :::::::: */ /* Zombie.hpp :+: :+: */ /* +:+ */ /* By: whaffman +#+ */ /* +#+ */ /* Created: 2025/03/21 15:19:56 by whaffman #+# #+# */ /* Updated: 2025/03/21 15:59:48 by whaffman ######## odam.nl */ /* */ /* ************************************************************************** */ #pragma once #include class Zombie { private: std::string name; public: Zombie(); Zombie(std::string name); ~Zombie(); void announce() const; void setName(std::string name); }; Zombie* zombieHorde( int N, std::string name );