summaryrefslogtreecommitdiff
path: root/inc/list.hpp
blob: 240fa9535925c23b779c0083d9704070791695f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef list_h
#define list_h

#include "creature.hpp"
#include "resource.hpp"
#include "window.hpp"

class List
{
	public:
		List(Window m);
		void Behavior();
		void Place();

	private:
		//Window main;
		std::vector<Resource> R;
		std::vector<Creature> C;
		int ** L;
};

#endif