diff options
author | Joachim Jablon <mario@notk.org> | 2011-11-25 02:16:50 +0100 |
---|---|---|
committer | asmadeus <asmadeus@fenrir.codewreck.org> | 2011-11-25 02:16:50 +0100 |
commit | a1a50e36935c3d956c682f804bb59f128ae68792 (patch) | |
tree | 78bce8038a442b1820f395f38cad4b2da6c87b6f /KeyboardController.h |
initial commit
Diffstat (limited to 'KeyboardController.h')
-rw-r--r-- | KeyboardController.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/KeyboardController.h b/KeyboardController.h new file mode 100644 index 0000000..3c6140d --- /dev/null +++ b/KeyboardController.h @@ -0,0 +1,20 @@ +#ifndef _KEYBOARD_CONTROLLER_H
+#define _KEYBOARD_CONTROLLER_H
+
+
+#include "Controller.h"
+
+class MainWindow;
+
+class KeyboardController :
+ public Controller
+{
+
+ friend MainWindow;
+public:
+ KeyboardController(Player &player);
+ virtual ~KeyboardController(void);
+};
+
+
+#endif
\ No newline at end of file |