/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Zombie.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: narnaud +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/06/14 08:02:30 by narnaud #+# #+# */ /* Updated: 2022/06/16 12:27:01 by narnaud ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef ZOMBIE_HPP # define ZOMBIE_HPP # ifndef DEBUG # define DEBUG 0 # endif # define ZB_AMOUNT 8 #include using std::cin; using std::cout; using std::string; class Zombie { public: Zombie(void); Zombie(string name); ~Zombie(); void announce(void) const; void setName(string name); private: string _name; }; Zombie *zombieHorde(int amount, string name); #endif