aboutsummaryrefslogtreecommitdiff
path: root/cpp01/ex02/ZombieEvent.hpp
blob: 869207eb4ae94d33511191756c49d90ff00e56bb (plain)
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