Changeset 5969 in orxonox.OLD for branches/spaceshipcontrol/src/lib/event
- Timestamp:
- Dec 7, 2005, 4:26:02 PM (19 years ago)
- Location:
- branches/spaceshipcontrol/src/lib/event
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/spaceshipcontrol/src/lib/event/key_mapper.cc
r5886 r5969 37 37 int KeyMapper::PEV_LEFT = EV_UNKNOWN; 38 38 int KeyMapper::PEV_RIGHT = EV_UNKNOWN; 39 int KeyMapper::PEV_ROLL_LEFT = EV_UNKNOWN; 40 int KeyMapper::PEV_ROLL_RIGHT = EV_UNKNOWN; 39 41 int KeyMapper::PEV_STRAFE_LEFT = EV_UNKNOWN; 40 42 int KeyMapper::PEV_STRAFE_RIGHT = EV_UNKNOWN; … … 69 71 {&KeyMapper::PEV_LEFT, CONFIG_NAME_PLAYER_LEFT}, 70 72 {&KeyMapper::PEV_RIGHT, CONFIG_NAME_PLAYER_RIGHT}, 73 {&KeyMapper::PEV_ROLL_LEFT, CONFIG_NAME_PLAYER_ROLL_RIGHT}, 74 {&KeyMapper::PEV_ROLL_RIGHT, CONFIG_NAME_PLAYER_ROLL_LEFT}, 71 75 {&KeyMapper::PEV_STRAFE_LEFT, "StrafeLeft"}, 72 76 {&KeyMapper::PEV_STRAFE_RIGHT, "StrafeRight"}, -
branches/spaceshipcontrol/src/lib/event/key_mapper.h
r5886 r5969 44 44 static int PEV_RIGHT; //!< right button 45 45 46 static int PEV_ROLL_LEFT; //!< rolls left 47 static int PEV_ROLL_RIGHT; //!< rolls right 48 46 49 static int PEV_STRAFE_LEFT; //!< strafe left button 47 50 static int PEV_STRAFE_RIGHT; //!< strafe right button
Note: See TracChangeset
for help on using the changeset viewer.