1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#ifndef ZOMBIE_EVENT_HPP # define ZOMBIE_EVENT_HPP #include <string> #include "Zombie.hpp" class ZombieEvent { public: void setZombieType(std::string type); Zombie *newZombie(std::string name); Zombie *randomChump(); private: std::string stored_type; }; #endif