File: Level.h

package info (click to toggle)
hannah 1.0-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 8,712 kB
  • ctags: 281
  • sloc: cpp: 2,210; sh: 214; makefile: 117
file content (20 lines) | stat: -rw-r--r-- 368 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _Level_H_
#define _Level_H_

#include "Defines.h"

using namespace std;

class Level{
	public:
		Level();
		virtual ~Level();
		gridcell map[SIZEX][SIZEY]; // Map data
		int px,py;		// Starting position, pink ghost
		int rx,ry;		// Red ghost
		int bx,by;		// Blue ghost
		int pillsleft;		// Pills on level
		vector<foodinfo> foods; // Food on level
};

#endif