/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ZombieEvent.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/13 09:42:36 by charles #+# #+# */ /* Updated: 2020/11/09 10:10:57 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef ZOMBIE_EVENT_HPP # define ZOMBIE_EVENT_HPP # include # include # include "Zombie.hpp" class ZombieEvent { public: void setZombieType(std::string const& type); Zombie* newZombie(std::string name); // subject prototype without const& Zombie* randomChump(); private: std::string m_storedType; }; #endif