2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-11-26 22:42:06 +00:00

Added the ability to dump and load technique sets.

note: techniques should be dumped in seperate files from technique sets, but compiling them all into the techset works as well but is harder to read.
This commit is contained in:
LJW-Dev
2025-07-07 15:53:45 +08:00
parent f3c83f702a
commit aae112d37e
4 changed files with 299 additions and 12 deletions

View File

@@ -0,0 +1,13 @@
#pragma once
#include "Asset/IAssetCreator.h"
#include "Game/T6/T6.h"
#include "SearchPath/ISearchPath.h"
#include "Utils/MemoryManager.h"
#include <memory>
namespace T6
{
std::unique_ptr<AssetCreator<AssetTechniqueSet>> CreateTechniqueSetLoader(MemoryManager& memory, ISearchPath& searchPath);
} // namespace T6