overlay "glx";
};
};
+ overlay "generic";
install true;
install_map
{
+++ /dev/null
-#include "touchscreen.h"
-
-namespace Msp {
-namespace Input {
-
-void Touchscreen::input_event(const Graphics::Window::Event &)
-{
-}
-
-} // namespace Input
-} // namespace Msp
--- /dev/null
+#include <stdexcept>
+#include "gamecontroller.h"
+
+using namespace std;
+
+namespace Msp {
+namespace Input {
+
+GameController::GameController(unsigned)
+{
+ throw runtime_error("not supported");
+}
+
+GameController::~GameController()
+{
+}
+
+void GameController::tick()
+{
+}
+
+} // namespace Input
+} // namespace Msp
--- /dev/null
+#include "touchscreen.h"
+
+namespace Msp {
+namespace Input {
+
+void Touchscreen::input_event(const Graphics::Window::Event &)
+{
+}
+
+} // namespace Input
+} // namespace Msp
+++ /dev/null
-#include "touchscreen.h"
-
-namespace Msp {
-namespace Input {
-
-void Touchscreen::input_event(const Graphics::Window::Event &)
-{
-}
-
-} // namespace Input
-} // namespace Msp