1 #ifndef _Level_H_
2 #define _Level_H_
3 
4 #include "Defines.h"
5 
6 using namespace std;
7 
8 class Level{
9 	public:
10 		Level();
11 		virtual ~Level();
12 		gridcell map[SIZEX][SIZEY]; // Map data
13 		int px,py;		// Starting position, pink ghost
14 		int rx,ry;		// Red ghost
15 		int bx,by;		// Blue ghost
16 		int pillsleft;		// Pills on level
17 		vector<foodinfo> foods; // Food on level
18 };
19 
20 #endif
21