Changeset 5069 in orxonox.OLD for orxonox/trunk/src/lib/event
- Timestamp:
- Aug 18, 2005, 9:35:49 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/event/event_def.h
r5039 r5069 18 18 typedef enum extEventTyes 19 19 { 20 EV_MOUSE_BUTTON_LEFT 20 EV_MOUSE_BUTTON_LEFT = SDLK_LAST, 21 21 EV_MOUSE_BUTTON_MIDDLE, 22 22 EV_MOUSE_BUTTON_RIGHT, 23 23 EV_MOUSE_BUTTON_WHEELUP, 24 24 EV_MOUSE_BUTTON_WHEELDOWN, 25 EV_MOUSE_MOTION = SDL_MOUSEMOTION,25 EV_MOUSE_MOTION, 26 26 EV_JOY_AXIS_MOTION, 27 27 EV_JOY_BALL_MOTION, … … 29 29 EV_JOY_BUTTON, 30 30 31 EV_VIDEO_RESIZE = SDL_VIDEORESIZE,31 EV_VIDEO_RESIZE, 32 32 33 33 EV_UNKNOWN, 34 34 35 EV_NUMBER = 500, //!< FIXME MSUT Resolve this EV_NUMBER should hold all the Events, also the count of other events35 EV_NUMBER 36 36 }; 37 37 … … 43 43 ES_GAME_MENU, //!< state when the menu is called during game 44 44 ES_MENU, //!< orxonox menu state 45 ES_SHELL, //!< if we are in shell Modus 45 46 46 47 ES_ALL, //!< you want to register events for all states
Note: See TracChangeset
for help on using the changeset viewer.