Adonthell  0.4
win_keys.h
1 /*
2  $Id: win_keys.h,v 1.2 2001/08/03 17:05:37 ksterker Exp $
3 
4  (C) Copyright 2000, 2001 Joel Vennin
5  Part of the Adonthell Project http://adonthell.linuxgames.com
6 
7  This program is free software; you can redistribute it and/or modify
8  it under the terms of the GNU General Public License.
9  This program is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY.
11 
12  See the COPYING file for more details
13 */
14 
15 #ifndef _WIN_KEYS_H_
16 #define _WIN_KEYS_H_
17 
18 #include "input.h"
19 
20 class win_keys
21 {
22  public:
23 
24  static SDLKey KEY_ACTIVATE_ENTRY;
25 
26  static SDLKey KEY_UP;
27 
28  static SDLKey KEY_DOWN;
29 
30  static SDLKey KEY_PREVIOUS;
31 
32  static SDLKey KEY_NEXT;
33 
34  static SDLKey KEY_ACTIVATE;
35 
36 };
37 
38 #endif
Declares the input class.