Changeset 3894 in orxonox.OLD for orxonox/trunk/src/lib/graphics/importer/material.h
- Timestamp:
- Apr 19, 2005, 6:48:49 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/graphics/importer/material.h
r3803 r3894 14 14 #endif /* HAVE_CONFIG_H */ 15 15 16 #ifndef NULL 17 #define NULL 0 18 #endif 19 16 20 // FORWARD DEFINITIONS // 17 21 class Texture; … … 22 26 { 23 27 public: 24 Material (c har* mtlName = "");25 Material* addMaterial(c har* mtlName);28 Material (const char* mtlName = NULL); 29 Material* addMaterial(const char* mtlName); 26 30 ~Material (); 27 31 28 Material* search(c har* mtlName);32 Material* search(const char* mtlName); 29 33 bool select (void); 30 34 31 void setName (c har* mtlName);35 void setName (const char* mtlName); 32 36 char* getName (void); 33 37 void setIllum (int illum);
Note: See TracChangeset
for help on using the changeset viewer.