/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Zombie.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: dkaiser Zombie::Zombie(const std::string &name) :name(name) {} Zombie::~Zombie(void) { std::cout << name << " died." << std::endl; } void Zombie::announce(void) { std::cout << name << ": BraiiiiiiinnnzzzZ..." << std::endl; }