mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-09-22 05:47:06 +00:00
19 lines
273 B
C++
19 lines
273 B
C++
#include "ModManContext.h"
|
|
|
|
ModManContext& ModManContext::Get()
|
|
{
|
|
static ModManContext context;
|
|
return context;
|
|
}
|
|
|
|
void ModManContext::Startup()
|
|
{
|
|
m_db_thread.Start();
|
|
}
|
|
|
|
void ModManContext::Destroy()
|
|
{
|
|
m_fast_file.Destroy();
|
|
m_db_thread.Terminate();
|
|
}
|