Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4410 in orxonox.OLD for orxonox/trunk/src/util/event/key_mapper.cc


Ignore:
Timestamp:
May 31, 2005, 12:43:58 AM (19 years ago)
Author:
patrick
Message:

orxonox/trunk: prepeared to implement all system wide commands

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/util/event/key_mapper.cc

    r4403 r4410  
    4343int KeyMapper::PEV_VIEW3 = -1;
    4444int KeyMapper::PEV_VIEW4 = -1;
    45 int KeyMapper::PEV_VIEW5 = -1;
     45int KeyMapper::PEV_VIEW5 = -1;
     46
     47int KeyMapper::PEV_NEXT_WORLD = -1;
     48int KeyMapper::PEV_PREVIOUS_WORLD = -1;
     49
     50int KeyMapper::PEV_PAUSE = -1;
     51int KeyMapper::PEV_QUIT = -1;
     52
     53
    4654
    4755
     
    6270                        {&KeyMapper::PEV_VIEW3, "view3"},
    6371                        {&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"},
    6579                        {NULL, NULL}};
    6680
Note: See TracChangeset for help on using the changeset viewer.