2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-06-06 08:42:35 +00:00

WIP: Converted custom map linker into different asset files

This commit is contained in:
LJW-Dev
2025-10-24 02:56:17 +08:00
committed by Jan Laupetin
parent 0e7b1e1d58
commit 66d3e0e9de
15 changed files with 1255 additions and 0 deletions
@@ -0,0 +1,17 @@
#include "GfxWorldLinker.h"
namespace BSP
{
GfxWorldLinker::GfxWorldLinker(MemoryManager& memory, ISearchPath& searchPath, AssetCreationContext& context)
: m_memory(memory),
m_search_path(searchPath),
m_context(context)
{
}
AssetCreationResult GfxWorldLinker::linkGfxWorld(BSPData* bsp)
{
return AssetCreationResult::Failure();
}
}