Changeset 4584 in orxonox.OLD for orxonox/trunk/src/lib/graphics/importer/material.h
- Timestamp:
- Jun 10, 2005, 3:50:11 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/graphics/importer/material.h
r4466 r4584 8 8 #ifndef _MATERIAL_H 9 9 #define _MATERIAL_H 10 #include "base_object.h" 10 11 11 12 #if HAVE_CONFIG_H 13 #include <config.h> 12 #if HAVE_CONFIG_H 13 #include <config.h> 14 14 #endif /* HAVE_CONFIG_H */ 15 15 … … 22 22 23 23 //! Class to handle Materials. 24 class Material 24 class Material : public BaseObject 25 25 { 26 26 public: … … 30 30 bool select (void); 31 31 32 void setName (const char* mtlName);33 char* getName (void);34 32 void setIllum (int illum); 35 33 void setIllum (char* illum); … … 54 52 55 53 private: 56 char* name; //!< The Name of the Material.57 54 int illumModel; //!< The IlluminationModel is either flat or smooth. 58 55 float diffuse [4]; //!< The diffuse color of the Material.
Note: See TracChangeset
for help on using the changeset viewer.