#ifndef ZOMBIE_EVENT_HPP # define ZOMBIE_EVENT_HPP #include #include "Zombie.hpp" class ZombieEvent { public: void setZombieType(std::string type); Zombie *newZombie(std::string name); Zombie *randomChump(); private: std::string stored_type; }; #endif