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