]> git.jsancho.org Git - lugaru.git/blob - Source/Input.h
571f33ef0229cef0af498e9a9ff22434c18a1136
[lugaru.git] / Source / Input.h
1 /*
2 Copyright (C) 2003, 2010 - Wolfire Games
3 Copyright (C) 2010 - MCMic
4
5 This file is part of Lugaru.
6
7 Lugaru is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License
9 as published by the Free Software Foundation; either version 2
10 of the License, or (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
15
16 See the GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
21 */
22
23 #ifndef _Input_H_
24 #define _Input_H_
25
26 /**> HEADER FILES <**/
27 #include "SDL.h"
28 #include "Game.h"
29
30 class Input {
31         public:
32                 static bool isKeyDown(int k);
33                 static const char* keyToChar(unsigned short which);
34                 static void setKeyFor(Game* g);
35 };
36
37 #endif