summaryrefslogtreecommitdiff
path: root/ui/inputHandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/inputHandler.h')
-rw-r--r--ui/inputHandler.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/ui/inputHandler.h b/ui/inputHandler.h
deleted file mode 100644
index aac323b..0000000
--- a/ui/inputHandler.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef INPUT_HANDLER_H
-#define INPUT_HANDLER_H
-
-#include <special_members.hpp>
-
-union SDL_Event;
-
-class InputHandler {
-public:
- InputHandler() = default;
- virtual ~InputHandler() = default;
-
- DEFAULT_MOVE_COPY(InputHandler);
-
- virtual bool handleInput(const SDL_Event &) = 0;
-};
-
-#endif