Changeset 2106 for trunk/src/map.h
- Timestamp:
- Nov 22, 2012, 12:22:35 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/map.h
r748 r2106 10 10 11 11 // 12 // The Map class13 // ------------- 14 // A Map object is a collection of Layers and other information (to be12 // The LevelMap class 13 // ------------------ 14 // A LevelMap object is a collection of Layers and other information (to be 15 15 // determined later). 16 16 // 17 17 18 #if !defined __LOL_ MAP_H__19 #define __LOL_ MAP_H__18 #if !defined __LOL_LEVELMAP_H__ 19 #define __LOL_LEVELMAP_H__ 20 20 21 21 namespace lol 22 22 { 23 23 24 class MapData;24 class LevelMapData; 25 25 26 class Map26 class LevelMap 27 27 { 28 28 public: 29 Map(char const *path);30 ~ Map();29 LevelMap(char const *path); 30 ~LevelMap(); 31 31 32 32 void Render(int x, int y, int z); … … 35 35 36 36 private: 37 MapData *data;37 LevelMapData *data; 38 38 }; 39 39
Note: See TracChangeset
for help on using the changeset viewer.