Changeset 8148 in orxonox.OLD for trunk/src/lib/event/event_def.h
- Timestamp:
- Jun 5, 2006, 12:46:02 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/event/event_def.h
r7919 r8148 42 42 //! this is an enumeration of all states of the event_handler/game 43 43 typedef enum elState 44 45 46 47 48 49 44 { 45 ES_NULL = -1, 46 ES_GAME = 0, //!< the state during the game plays 47 ES_GAME_MENU = 1, //!< state when the menu is called during game 48 ES_MENU = 2, //!< orxonox menu state 49 ES_SHELL = 3, //!< if we are in shell Modus 50 50 51 51 ES_ALL = 4, //!< you want to register events for all states 52 52 53 ES_NUMBER = 5, //!< the number of states 54 }; 53 ES_NUMBER = 5, //!< the number of states 54 }; 55 56 55 57 56 58
Note: See TracChangeset
for help on using the changeset viewer.