blob: 980ea498544846fed5bee9fd45c6d8b379054ee0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef ZOMBIE_HPP
# define ZOMBIE_HPP
#include <string>
class Zombie
{
public:
Zombie(std::string n, std::string t);
void announce();
private:
std::string name;
std::string type;
};
#endif
|