mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-19 12:31:17 +01:00
17 lines
256 B
C++
17 lines
256 B
C++
|
#include "EventHandler.h"
|
||
|
|
||
|
//EventHandler *eventHandler = NULL;
|
||
|
|
||
|
namespace InputCommon
|
||
|
{
|
||
|
void Init() {
|
||
|
// init the event handler
|
||
|
//EventHandler::GetInstance();
|
||
|
}
|
||
|
|
||
|
void Shutdown() {
|
||
|
//if (eventHandler)
|
||
|
// delete eventHandler;
|
||
|
}
|
||
|
}
|