mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-11-23 13:12:06 +00:00
Done: - Moved custom map structures to their own objcommon header file - Updated GfxLightGridRow struct - Reverted shader_bin file path - Renamed Project Creator to BSP Creator - Removed model loading from BSP creator - Cleaned up BSP Creator and updated the names of structs WIP: - Update BSP calculation code to be more readable and use unique/shared ptrs
11 lines
210 B
C++
11 lines
210 B
C++
#pragma once
|
|
|
|
#include "Game/T6/Maps/CustomMaps.h"
|
|
#include "SearchPath/ISearchPath.h"
|
|
|
|
class BSPCreator
|
|
{
|
|
public:
|
|
static CustomMapBSP* createCustomMapBSP(std::string& mapName, ISearchPath& searchPath);
|
|
};
|