2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-06-06 08:42:35 +00:00
- Updated file structure to use BSP naming scheme
- Re-wrote BSP creator to use c++ more efficiently
This commit is contained in:
LJW-Dev
2025-10-22 16:06:59 +08:00
committed by Jan Laupetin
parent 42d4f6f54d
commit fbcf2dbd7c
21 changed files with 2693 additions and 2741 deletions
+9
View File
@@ -0,0 +1,9 @@
#pragma once
#include "BSP.h"
#include "SearchPath/ISearchPath.h"
namespace BSP
{
std::unique_ptr<BSPData> createBSPData(std::string& mapName, ISearchPath& searchPath);
};