Changeset 7193 in orxonox.OLD for trunk/src/lib/graphics/importer
- Timestamp:
- Mar 7, 2006, 5:05:50 PM (19 years ago)
- Location:
- trunk/src/lib/graphics/importer
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/graphics/importer/height_map.cc
r7014 r7193 20 20 #include "p_node.h" 21 21 #include "state.h" 22 #include " resource_manager.h"22 #include "util/loading/resource_manager.h" 23 23 #include "debug.h" 24 24 -
trunk/src/lib/graphics/importer/material.cc
r7057 r7193 21 21 #include "texture.h" 22 22 #include "debug.h" 23 #include " resource_manager.h"23 #include "util/loading/resource_manager.h" 24 24 #include <stdlib.h> 25 25 #include <string.h> 26 26 27 27 //! @todo check if we are in RESOURCE MANAGER-mode 28 #include " resource_manager.h"28 #include "util/loading/resource_manager.h" 29 29 30 30 using namespace std; -
trunk/src/lib/graphics/importer/md2Model.cc
r7123 r7193 19 19 20 20 #include "debug.h" 21 #include " resource_manager.h"21 #include "util/loading/resource_manager.h" 22 22 23 23 -
trunk/src/lib/graphics/importer/media_container.cc
r6877 r7193 25 25 #include "media_container.h" 26 26 27 #include " resource_manager.h"27 #include "util/loading/resource_manager.h" 28 28 29 29 /* header for debug output */ -
trunk/src/lib/graphics/importer/model.h
r7123 r7193 46 46 unsigned int numTexCoor; //!< how many Texture Coordinates in the Model 47 47 48 const float* pVertices; //!< array of the Verti ves48 const float* pVertices; //!< array of the Vertices 49 49 sTriangleExt* pTriangles; //!< array of all triangles 50 50 const float* pNormals; //!< array of the Normals … … 55 55 56 56 //! This class defines the basic components of a model 57 class Model : public BaseObject {57 class Model : virtual public BaseObject { 58 58 59 59 public: -
trunk/src/lib/graphics/importer/movie_player.cc
r6731 r7193 25 25 #include "movie_player.h" 26 26 27 #include " resource_manager.h"27 #include "util/loading/resource_manager.h" 28 28 29 29 // header for debug output
Note: See TracChangeset
for help on using the changeset viewer.