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

17 lines
256 B
C++
Raw Normal View History

2009-01-04 20:05:34 +00:00
#include "EventHandler.h"
//EventHandler *eventHandler = NULL;
2009-01-04 20:05:34 +00:00
namespace InputCommon
{
2009-01-04 22:58:20 +00:00
void Init() {
// init the event handler
2009-01-06 08:30:31 +00:00
//EventHandler::GetInstance();
2009-01-04 22:58:20 +00:00
}
void Shutdown() {
//if (eventHandler)
// delete eventHandler;
2009-01-04 22:58:20 +00:00
}
2009-01-04 20:05:34 +00:00
}