Changeset 6997 in orxonox.OLD for trunk/src/lib/event
- Timestamp:
- Feb 3, 2006, 12:04:51 AM (19 years ago)
- Location:
- trunk/src/lib/event
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/event/key_mapper.cc
r5978 r6997 33 33 34 34 /* initialize all variables to a reasonable value*/ 35 int KeyMapper::PEV_ UP= EV_UNKNOWN;36 int KeyMapper::PEV_ DOWN= EV_UNKNOWN;35 int KeyMapper::PEV_FORWARD = EV_UNKNOWN; 36 int KeyMapper::PEV_BACKWARD = EV_UNKNOWN; 37 37 int KeyMapper::PEV_LEFT = EV_UNKNOWN; 38 38 int KeyMapper::PEV_RIGHT = EV_UNKNOWN; … … 67 67 */ 68 68 orxKeyMapping map[] = { 69 {&KeyMapper::PEV_ UP, CONFIG_NAME_PLAYER_UP},70 {&KeyMapper::PEV_ DOWN, CONFIG_NAME_PLAYER_DOWN},69 {&KeyMapper::PEV_FORWARD, CONFIG_NAME_PLAYER_FORWARD}, 70 {&KeyMapper::PEV_BACKWARD, CONFIG_NAME_PLAYER_BACKWARD}, 71 71 {&KeyMapper::PEV_LEFT, CONFIG_NAME_PLAYER_LEFT}, 72 72 {&KeyMapper::PEV_RIGHT, CONFIG_NAME_PLAYER_RIGHT}, -
trunk/src/lib/event/key_mapper.h
r5978 r6997 39 39 40 40 public: 41 static int PEV_ UP; //!< upbutton42 static int PEV_ DOWN; //!< downbuttton41 static int PEV_FORWARD; //!< forward button 42 static int PEV_BACKWARD; //!< backward buttton 43 43 static int PEV_LEFT; //!< left button 44 44 static int PEV_RIGHT; //!< right button
Note: See TracChangeset
for help on using the changeset viewer.