mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-12-15 04:29:37 +00:00
Add FreeType, progress to title screen
This commit is contained in:
16
PortabilityLayer/HostFontHandler.cpp
Normal file
16
PortabilityLayer/HostFontHandler.cpp
Normal file
@@ -0,0 +1,16 @@
|
||||
#include "HostFontHandler.h"
|
||||
|
||||
namespace PortabilityLayer
|
||||
{
|
||||
void HostFontHandler::SetInstance(HostFontHandler *instance)
|
||||
{
|
||||
ms_instance = instance;
|
||||
}
|
||||
|
||||
HostFontHandler *HostFontHandler::GetInstance()
|
||||
{
|
||||
return ms_instance;
|
||||
}
|
||||
|
||||
HostFontHandler *HostFontHandler::ms_instance = nullptr;
|
||||
}
|
||||
Reference in New Issue
Block a user