/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Zombie.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: narnaud +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/06/14 08:53:11 by narnaud #+# #+# */ /* Updated: 2022/06/14 09:45:30 by narnaud ### ########.fr */ /* */ /* ************************************************************************** */ #include "Zombie.hpp" Zombie::Zombie(string name):_name(name) { cout << "*" << name << " died.*\n"; } Zombie::~Zombie(void) { cout << "*" << this->_name << " really died.*\n"; } void Zombie::announce(void) const { cout << this->_name << ": BraiiiiiiinnnzzzZ...\n"; }