mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 23:00:42 +00:00
17 lines
306 B
C++
17 lines
306 B
C++
#include "HostVOSEventQueue.h"
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
void HostVOSEventQueue::SetInstance(HostVOSEventQueue *instance)
|
|
{
|
|
ms_instance = instance;
|
|
}
|
|
|
|
HostVOSEventQueue *HostVOSEventQueue::GetInstance()
|
|
{
|
|
return ms_instance;
|
|
}
|
|
|
|
HostVOSEventQueue *HostVOSEventQueue::ms_instance = nullptr;
|
|
}
|