Changeset 75 for trunk/src/tileset.h
- Timestamp:
- Jul 7, 2010, 2:11:16 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/tileset.h
r74 r75 4 4 */ 5 5 6 #if !defined __DH_TILE R_H__7 #define __DH_TILE R_H__6 #if !defined __DH_TILESET_H__ 7 #define __DH_TILESET_H__ 8 8 9 class Tile setData;9 class TileSetData; 10 10 11 class Tile set11 class TileSet 12 12 { 13 13 public: 14 Tileset(); 15 ~Tileset(); 14 TileSet(char const *path); 15 ~TileSet(); 16 17 void Ref(); 18 int Unref(); 19 20 char const *GetName(); 16 21 17 22 void AddTile(int n, int x, int y, int z); … … 20 25 21 26 private: 22 Tile setData *data;27 TileSetData *data; 23 28 }; 24 29 25 #endif // __DH_TILE R_H__30 #endif // __DH_TILESET_H__ 26 31
Note: See TracChangeset
for help on using the changeset viewer.