Files
Aerofoil/PortabilityLayer/AppEventHandler.cpp
2020-04-18 05:51:39 -04:00

17 lines
285 B
C++

#include "AppEventHandler.h"
namespace PortabilityLayer
{
IAppEventHandler *AppEventHandler::ms_instance;
IAppEventHandler *AppEventHandler::GetInstance()
{
return ms_instance;
}
void AppEventHandler::SetInstance(IAppEventHandler *instance)
{
ms_instance = instance;
}
}