summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/Src/InputCommon.cpp
blob: beed506f8e70ab9f394fd313abac29e6c2053f41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "EventHandler.h"

//EventHandler *eventHandler = NULL;

namespace InputCommon
{
    void Init() {
	// init the event handler
	//EventHandler::GetInstance();
    }
    
    void Shutdown() {
	//if (eventHandler)
	//    delete eventHandler;
    }
}