2022-04-09 00:59:42 +02:00
|
|
|
#include "core/stdafx.h"
|
|
|
|
#include "vpklib/packedstore.h"
|
|
|
|
#include "filesystem/filesystem.h"
|
|
|
|
|
2022-06-16 21:19:04 +02:00
|
|
|
//-----------------------------------------------------------------------------
|
2022-08-12 15:51:04 +02:00
|
|
|
// Singleton FileSystem
|
2022-06-16 21:19:04 +02:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
CFileSystem_Stdio* FileSystem()
|
|
|
|
{
|
2022-08-13 11:24:55 +02:00
|
|
|
return (*g_pFullFileSystem);
|
2022-04-09 00:59:42 +02:00
|
|
|
}
|
2022-04-09 02:18:57 +02:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2022-06-16 21:19:04 +02:00
|
|
|
CFileSystem_Stdio** g_pFullFileSystem = nullptr;
|
2022-04-18 03:35:08 +02:00
|
|
|
CFileSystem_Stdio* g_pFileSystem_Stdio = nullptr;
|