10 lines
277 B
C++
10 lines
277 B
C++
#include "Zombie.hpp"
|
|
#include <iostream>
|
|
|
|
void Zombie::announce(void) {
|
|
std::cout << name << ": " << "BraiiiiiiinnnzzzZ..." << std::endl;
|
|
}
|
|
|
|
Zombie::Zombie(std::string name) { this->name = name; }
|
|
|
|
Zombie::~Zombie() { std::cout << name << " is heading out." << std::endl; }
|