21 lines
261 B
C++
21 lines
261 B
C++
|
|
#ifndef ZOMBIE_HPP
|
||
|
|
#define ZOMBIE_HPP
|
||
|
|
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
class Zombie {
|
||
|
|
public:
|
||
|
|
Zombie(std::string name);
|
||
|
|
~Zombie();
|
||
|
|
|
||
|
|
void announce(void);
|
||
|
|
|
||
|
|
private:
|
||
|
|
std::string name;
|
||
|
|
};
|
||
|
|
|
||
|
|
Zombie *newZombie(std::string name);
|
||
|
|
void randomChump(std::string name);
|
||
|
|
|
||
|
|
#endif
|