aboutsummaryrefslogtreecommitdiff
path: root/cpp01/ex03/ZombieHorde.hpp
blob: 772bcc0ef057860a074b223287bac245f68a916b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef ZOMBIE_HORDE_HPP
# define ZOMBIE_HORDE_HPP

# include "Zombie.hpp"

class ZombieHorde
{
	public:
		ZombieHorde(int size);
		void announce();
		~ZombieHorde();

	private:
		int horde_size;
		Zombie **horde;
};

#endif