Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8717 in orxonox.OLD for trunk/src/defs


Ignore:
Timestamp:
Jun 22, 2006, 2:04:28 PM (19 years ago)
Author:
bensch
Message:

merged the gui back

Location:
trunk/src/defs
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/defs/class_id.h

    r8711 r8717  
    146146  CL_MOVIE_LOADER               =    0x00000109,
    147147
     148  CL_GAME_MENU                  =    0x00000110,
     149  CL_GAME_MENU_DATA             =    0x00000111,
     150
     151
    148152  CL_MULTIPLAYER_TEAM_DEATHMATCH=    0x00000121,
    149153  CL_SINGLEPLAYER_SHOOTEMUP     =    0x00000122,
  • trunk/src/defs/error.h

    r5039 r8717  
    11
    22
    3 /* 
     3/*
    44   orxonox - the future of 3D-vertical-scrollers
    55
     
    1717
    1818
    19 /*! 
     19/*!
    2020 * @file error.h
    2121  *  A compendium of Error codes used in the program
    22 */ 
     22*/
    2323
    2424
     
    5454*/
    5555
    56 typedef struct
     56struct ErrorMessage
    5757{
     58  ErrorMessage(int code = 0, char* message = NULL, char* location = NULL)
     59    : code(code), message(message), location(location) {};
    5860  int code;
    5961  char* message;
    6062  char* location;
    61 } ErrorMessage;
     63};
    6264
    6365#endif /* _ERROR_H */
Note: See TracChangeset for help on using the changeset viewer.