cpp01/ex01/Zombie.cpp

13 lines
304 B
C++
Raw Permalink Normal View History

2025-05-12 12:03:57 +02:00
#include "Zombie.hpp"
#include <iostream>
void Zombie::announce(void) {
std::cout << name << ": " << "BraiiiiiiinnnzzzZ..." << std::endl;
}
void Zombie::setName(std::string name) { this->name = name; }
Zombie::Zombie() {}
Zombie::~Zombie() { std::cout << name << " is heading out." << std::endl; }