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