feat: add bind for loading fastfiles to ModMan

This commit is contained in:
Jan Laupetin
2025-10-11 19:04:46 +01:00
parent 42473a7320
commit 4911cfa4c6
15 changed files with 215 additions and 1 deletions
+10
View File
@@ -5,3 +5,13 @@ ModManContext& ModManContext::Get()
static ModManContext context;
return context;
}
void ModManContext::Startup()
{
m_db_thread.Start();
}
void ModManContext::Destroy()
{
m_db_thread.Terminate();
}