blob: 272d1a5ddcb1dedfb2e939f6d62d64d223957b47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef _KEYBOARD_CONTROLLER_H
#define _KEYBOARD_CONTROLLER_H
#include "Controller.h"
class MainWindow;
class KeyboardController :
public Controller
{
friend class MainWindow;
public:
KeyboardController(Player &player);
virtual ~KeyboardController(void);
};
#endif
|