Adonthell 0.4
|
00001 /* 00002 (C) Copyright 2000, 2001 Joel Vennin 00003 Part of the Adonthell Project http://adonthell.linuxgames.com 00004 00005 This program is free software; you can redistribute it and/or modify 00006 it under the terms of the GNU General Public License. 00007 This program is distributed in the hope that it will be useful, 00008 but WITHOUT ANY WARRANTY. 00009 00010 See the COPYING file for more details 00011 */ 00012 00013 #include "win_keys.h" 00014 00015 SDLKey win_keys::KEY_ACTIVATE_ENTRY = SDLK_RETURN; 00016 00017 SDLKey win_keys::KEY_UP = SDLK_PAGEUP; 00018 00019 SDLKey win_keys::KEY_DOWN = SDLK_PAGEDOWN; 00020 00021 SDLKey win_keys::KEY_PREVIOUS = SDLK_UP; 00022 00023 SDLKey win_keys::KEY_NEXT = SDLK_DOWN; 00024 00025 SDLKey win_keys::KEY_ACTIVATE = SDLK_SPACE; 00026