You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.2 KiB
36 lines
1.2 KiB
3 years ago
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* Zombie.cpp :+: :+: :+: */
|
||
|
/* +:+ +:+ +:+ */
|
||
|
/* By: narnaud <narnaud@student.42.fr> +#+ +:+ +#+ */
|
||
|
/* +#+#+#+#+#+ +#+ */
|
||
|
/* Created: 2022/06/14 08:53:11 by narnaud #+# #+# */
|
||
|
/* Updated: 2022/06/16 12:43:16 by narnaud ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
#include "Zombie.hpp"
|
||
|
|
||
|
Zombie::Zombie(){}
|
||
|
|
||
|
Zombie::Zombie(string name):_name(name)
|
||
|
{
|
||
|
cout << "*" << _name << " died.*\n";
|
||
|
}
|
||
|
|
||
|
Zombie::~Zombie(void)
|
||
|
{
|
||
|
cout << "*" << _name << " really died.*\n";
|
||
|
}
|
||
|
|
||
|
void Zombie::announce(void) const
|
||
|
{
|
||
|
cout << _name << ": BraiiiiiiinnnzzzZ...\n";
|
||
|
}
|
||
|
|
||
|
void Zombie::setName(string name)
|
||
|
{
|
||
|
_name = name;
|
||
|
}
|