dolphin/Source/Core/InputCommon/Src/InputCommon.cpp

17 lines
256 B
C++
Raw Normal View History

#include "EventHandler.h"
//EventHandler *eventHandler = NULL;
namespace InputCommon
{
void Init() {
// init the event handler
//EventHandler::GetInstance();
}
void Shutdown() {
//if (eventHandler)
// delete eventHandler;
}
}