Changeset 5967 in orxonox.OLD for branches/height_map/src/lib/graphics/importer/height_map.h
- Timestamp:
- Dec 7, 2005, 4:15:30 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/height_map/src/lib/graphics/importer/height_map.h
r5942 r5967 13 13 */ 14 14 15 15 16 #include "model.h" 16 17 17 18 class SDL_Surface; 19 class Vector; 18 20 19 21 class HeightMap : public Model … … 21 23 public: 22 24 void load(); 25 void load(const char*, int); 23 26 HeightMap(); 27 HeightMap(const char*); 28 ~HeightMap(); 29 30 private: 31 SDL_Surface* heightMap; 32 24 33 };
Note: See TracChangeset
for help on using the changeset viewer.