Adonthell  0.4
win_keys.cc
1 /*
2  (C) Copyright 2000, 2001 Joel Vennin
3  Part of the Adonthell Project http://adonthell.linuxgames.com
4 
5  This program is free software; you can redistribute it and/or modify
6  it under the terms of the GNU General Public License.
7  This program is distributed in the hope that it will be useful,
8  but WITHOUT ANY WARRANTY.
9 
10  See the COPYING file for more details
11 */
12 
13 #include "win_keys.h"
14 
15 SDLKey win_keys::KEY_ACTIVATE_ENTRY = SDLK_RETURN;
16 
17 SDLKey win_keys::KEY_UP = SDLK_PAGEUP;
18 
19 SDLKey win_keys::KEY_DOWN = SDLK_PAGEDOWN;
20 
21 SDLKey win_keys::KEY_PREVIOUS = SDLK_UP;
22 
23 SDLKey win_keys::KEY_NEXT = SDLK_DOWN;
24 
25 SDLKey win_keys::KEY_ACTIVATE = SDLK_SPACE;
26