/* ************************************************************************** */ /* */ /* :::::::: */ /* Zombie.hpp :+: :+: */ /* +:+ */ /* By: whaffman +#+ */ /* +#+ */ /* Created: 2025/03/21 15:19:56 by whaffman #+# #+# */ /* Updated: 2025/04/02 10:48:04 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); static Zombie *zombieHorde(int N, std::string name); };