/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Zombie.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: aortigos name = "NULL"; } Zombie::~Zombie() { std::cout << this->name << " has died.... again..." << std::endl; } Zombie::Zombie(std::string str) { this->name = str; } void Zombie::announce( void ) { std::cout << this->name << ": BraiiiiiiinnnzzzZ..." << std::endl; }