2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-12-07 03:37:48 +00:00
Files
OpenAssetTools/src/ObjLoading/Game/T6/BSP/Linker/MapEntsLinker.h
2025-11-09 22:45:38 +01:00

22 lines
504 B
C++

#pragma once
#include "Asset/IAssetCreator.h"
#include "Game/T6/BSP/BSP.h"
#include "SearchPath/ISearchPath.h"
#include "Utils/MemoryManager.h"
namespace BSP
{
class MapEntsLinker
{
public:
MapEntsLinker(MemoryManager& memory, ISearchPath& searchPath, AssetCreationContext& context);
T6::MapEnts* linkMapEnts(BSPData* bsp);
private:
MemoryManager& m_memory;
ISearchPath& m_search_path;
AssetCreationContext& m_context;
};
} // namespace BSP