mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-11-25 22:22:05 +00:00
10 lines
201 B
C++
10 lines
201 B
C++
#pragma once
|
|
|
|
#include "BSP.h"
|
|
#include "SearchPath/ISearchPath.h"
|
|
|
|
namespace BSP
|
|
{
|
|
std::unique_ptr<BSPData> createBSPData(const std::string& mapName, ISearchPath& searchPath);
|
|
}; // namespace BSP
|