]> git.tdb.fi Git - libs/gui.git/blob - source/input/generic/gamecontroller.cpp
Add a generic directory for fallback implementations
[libs/gui.git] / source / input / generic / gamecontroller.cpp
1 #include <stdexcept>
2 #include "gamecontroller.h"
3
4 using namespace std;
5
6 namespace Msp {
7 namespace Input {
8
9 GameController::GameController(unsigned)
10 {
11         throw runtime_error("not supported");
12 }
13
14 GameController::~GameController()
15 {
16 }
17
18 void GameController::tick()
19 {
20 }
21
22 } // namespace Input
23 } // namespace Msp