aboutsummaryrefslogtreecommitdiff
path: root/cpp01/ex03/Zombie.cpp
blob: 2ea23b6f21e777b42521b37ac8d0ff9e1394da13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <iostream>
#include "Zombie.hpp"

Zombie::Zombie(std::string n, std::string t)
{
	name = n;
	type = t;
	announce();
}

void Zombie::announce()
{
	std::cout << "<" << name << " (" << type << ")> Braiiiiiiinnnssss..." << std::endl;
}