Changeset 10698 in orxonox.OLD for trunk/src/lib/event
- Timestamp:
- Jun 14, 2007, 5:33:43 PM (18 years ago)
- Location:
- trunk/src/lib/event
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/event/key_mapper.cc
r10638 r10698 47 47 int KeyMapper::PEV_JUMP = EV_UNKNOWN; 48 48 int KeyMapper::PEV_ACTION = EV_UNKNOWN; 49 int KeyMapper::PEV_CROUCH = EV_UNKNOWN; 49 50 50 51 int KeyMapper::PEV_FIRE1 = EV_UNKNOWN; … … 87 88 {&KeyMapper::PEV_JUMP, CONFIG_NAME_PLAYER_JUMP, SDLK_SPACE}, 88 89 {&KeyMapper::PEV_ACTION, CONFIG_NAME_PLAYER_ACTION, SDLK_u}, 90 {&KeyMapper::PEV_CROUCH, CONFIG_NAME_PLAYER_CROUCH, SDLK_LCTRL}, 91 89 92 90 93 {&KeyMapper::PEV_FIRE1, CONFIG_NAME_PLAYER_FIRE, EV_MOUSE_BUTTON_LEFT}, -
trunk/src/lib/event/key_mapper.h
r10638 r10698 58 58 static int PEV_JUMP; //!< jump 59 59 static int PEV_ACTION; //!< the action (or use) key 60 static int PEV_CROUCH; //!< crouch 60 61 61 62 static int PEV_FIRE1; //!< fire button 1
Note: See TracChangeset
for help on using the changeset viewer.