Add FreeType, progress to title screen

This commit is contained in:
elasota
2019-12-21 18:40:17 -05:00
parent c9c6976344
commit 8354d13a84
901 changed files with 444265 additions and 440 deletions

View File

@@ -0,0 +1,16 @@
#include "HostVOSEventQueue.h"
namespace PortabilityLayer
{
void HostVOSEventQueue::SetInstance(HostVOSEventQueue *instance)
{
ms_instance = instance;
}
HostVOSEventQueue *HostVOSEventQueue::GetInstance()
{
return ms_instance;
}
HostVOSEventQueue *HostVOSEventQueue::ms_instance = nullptr;
}