mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-11-30 16:27:47 +00:00
10 lines
199 B
C++
10 lines
199 B
C++
#include "FastFileContext.h"
|
|
|
|
#include "ZoneLoading.h"
|
|
|
|
bool FastFileContext::LoadFastFile(const std::string& path)
|
|
{
|
|
m_loaded_zones.emplace_back(ZoneLoading::LoadZone(path));
|
|
return true;
|
|
}
|