summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/Src/InputCommon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/InputCommon/Src/InputCommon.cpp')
-rw-r--r--Source/Core/InputCommon/Src/InputCommon.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/Source/Core/InputCommon/Src/InputCommon.cpp b/Source/Core/InputCommon/Src/InputCommon.cpp
new file mode 100644
index 0000000000..beed506f8e
--- /dev/null
+++ b/Source/Core/InputCommon/Src/InputCommon.cpp
@@ -0,0 +1,16 @@
+#include "EventHandler.h"
+
+//EventHandler *eventHandler = NULL;
+
+namespace InputCommon
+{
+ void Init() {
+ // init the event handler
+ //EventHandler::GetInstance();
+ }
+
+ void Shutdown() {
+ //if (eventHandler)
+ // delete eventHandler;
+ }
+}