00001 #ifndef _MAP_H_ 00002 #define _MAP_H_ 00003 00004 #include <iostream> 00005 #include <fstream> 00006 #include "SpecialTiles.h" 00007 using namespace std; 00008 00009 #define MAP_X_SIZE 100 00010 #define MAP_Y_SIZE 100 00011 00013 00016 class Map { 00017 public: 00019 Map(); 00021 char level[MAP_Y_SIZE][MAP_X_SIZE]; 00023 void loadMap(char *filename); 00024 }; 00025 00026 #endif