Changeset 4410 in orxonox.OLD for orxonox/trunk/src/util/event
- Timestamp:
- May 31, 2005, 12:43:58 AM (19 years ago)
- Location:
- orxonox/trunk/src/util/event
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/util/event/key_mapper.cc
r4403 r4410 43 43 int KeyMapper::PEV_VIEW3 = -1; 44 44 int KeyMapper::PEV_VIEW4 = -1; 45 int KeyMapper::PEV_VIEW5 = -1; 45 int KeyMapper::PEV_VIEW5 = -1; 46 47 int KeyMapper::PEV_NEXT_WORLD = -1; 48 int KeyMapper::PEV_PREVIOUS_WORLD = -1; 49 50 int KeyMapper::PEV_PAUSE = -1; 51 int KeyMapper::PEV_QUIT = -1; 52 53 46 54 47 55 … … 62 70 {&KeyMapper::PEV_VIEW3, "view3"}, 63 71 {&KeyMapper::PEV_VIEW4, "view4"}, 64 {&KeyMapper::PEV_VIEW5, "view5"}, 72 {&KeyMapper::PEV_VIEW5, "view5"}, 73 74 {&KeyMapper::PEV_NEXT_WORLD, "Next-World"}, 75 {&KeyMapper::PEV_PREVIOUS_WORLD, "Prev-World"}, 76 77 {&KeyMapper::PEV_PAUSE, "Pause"}, 78 {&KeyMapper::PEV_QUIT, "Quit"}, 65 79 {NULL, NULL}}; 66 80 -
orxonox/trunk/src/util/event/key_mapper.h
r4405 r4410 57 57 static int PEV_VIEW5; 58 58 59 static int PEV_NEXT_WORLD; 60 static int PEV_PREVIOUS_WORLD; 61 62 static int PEV_PAUSE; 63 static int PEV_QUIT; 64 59 65 private: 60 66 Sint32 coord[2];
Note: See TracChangeset
for help on using the changeset viewer.