1 /*
2  * xrick/src/syskbd.c
3  *
4  * Copyright (C) 1998-2002 BigOrno (bigorno@bigorno.net). All rights reserved.
5  *
6  * The use and distribution terms for this software are contained in the file
7  * named README, which can be found in the root of this distribution. By
8  * using this software in any fashion, you are agreeing to be bound by the
9  * terms of this license.
10  *
11  * You must not remove this notice, or any other, from this software.
12  */
13 
14 #include <SDL.h>
15 
16 #include "system.h"
17 
18 U8 syskbd_up = SDLK_o;
19 U8 syskbd_down = SDLK_k;
20 U8 syskbd_left = SDLK_z;
21 U8 syskbd_right = SDLK_x;
22 U8 syskbd_pause = SDLK_p;
23 U8 syskbd_end = SDLK_e;
24 U8 syskbd_xtra = SDLK_ESCAPE;
25 U8 syskbd_fire = SDLK_SPACE;
26 
27 /* eof */
28 
29 
30