Changeset 6100 in orxonox.OLD for trunk/src/lib
- Timestamp:
- Dec 14, 2005, 1:46:12 PM (19 years ago)
- Location:
- trunk/src/lib/graphics/importer
- Files:
-
- 1 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/graphics/importer/Makefile.am
r6022 r6100 12 12 material.cc \ 13 13 texture.cc \ 14 texture_sequence.cc 14 texture_sequence.cc \ 15 height_map.cc 15 16 16 17 … … 25 26 texture.h \ 26 27 texture_sequence.h \ 28 height_map.h \ 27 29 anorms.h \ 28 30 anormtab.h -
trunk/src/lib/graphics/importer/height_map.cc
r6099 r6100 27 27 #endif 28 28 29 HeightMap::HeightMap() : Model()29 HeightMap::HeightMap() : StaticModel() 30 30 { 31 31 32 32 } 33 33 34 HeightMap::HeightMap(const char* height_map_name = NULL) : Model()34 HeightMap::HeightMap(const char* height_map_name = NULL) : StaticModel() 35 35 { 36 36 this->setClassID(CL_HEIGHT_MAP, "HeightMap"); -
trunk/src/lib/graphics/importer/height_map.h
r6099 r6100 14 14 15 15 16 #include " model.h"16 #include "static_model.h" 17 17 18 18 class SDL_Surface; 19 19 class Vector; 20 20 21 class HeightMap : public Model21 class HeightMap : public StaticModel 22 22 { 23 23 public:
Note: See TracChangeset
for help on using the changeset viewer.