Changeset 8717 in orxonox.OLD for trunk/src/defs
- Timestamp:
- Jun 22, 2006, 2:04:28 PM (19 years ago)
- Location:
- trunk/src/defs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/defs/class_id.h
r8711 r8717 146 146 CL_MOVIE_LOADER = 0x00000109, 147 147 148 CL_GAME_MENU = 0x00000110, 149 CL_GAME_MENU_DATA = 0x00000111, 150 151 148 152 CL_MULTIPLAYER_TEAM_DEATHMATCH= 0x00000121, 149 153 CL_SINGLEPLAYER_SHOOTEMUP = 0x00000122, -
trunk/src/defs/error.h
r5039 r8717 1 1 2 2 3 /* 3 /* 4 4 orxonox - the future of 3D-vertical-scrollers 5 5 … … 17 17 18 18 19 /*! 19 /*! 20 20 * @file error.h 21 21 * A compendium of Error codes used in the program 22 */ 22 */ 23 23 24 24 … … 54 54 */ 55 55 56 typedef struct 56 struct ErrorMessage 57 57 { 58 ErrorMessage(int code = 0, char* message = NULL, char* location = NULL) 59 : code(code), message(message), location(location) {}; 58 60 int code; 59 61 char* message; 60 62 char* location; 61 } ErrorMessage;63 }; 62 64 63 65 #endif /* _ERROR_H */
Note: See TracChangeset
for help on using the changeset viewer.