2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-11-23 05:12:05 +00:00

Initial commit of BSP compilation

This commit is contained in:
LJW-Dev
2025-07-07 23:04:08 +08:00
parent f3c83f702a
commit c045d54739
14 changed files with 3406 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
#include "Game/T6/T6.h"
#include "SearchPath/ISearchPath.h"
#include "Utils/MemoryManager.h"
#include "Asset/IAssetCreator.h"
using namespace T6;
#include "OBJ_Loader.h"
class CustomMapLinker
{
public:
CustomMapLinker(MemoryManager& memory, ISearchPath& searchPath, Zone& zone);
bool linkCustomMap(customMapInfo* projInfo);
};