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

chore: use RawTemplater to template XModel dumping code for t5 and t6

This commit is contained in:
Jan
2024-09-14 12:46:57 +02:00
parent 7227c84cde
commit fc216a153f
7 changed files with 722 additions and 53 deletions

View File

@ -0,0 +1,15 @@
#options GAME (T5, T6)
#filename "Game/" + GAME + "/XModel/XModelDumper" + GAME + ".h"
#set GAME_HEADER "\"Game/" + GAME + "/" + GAME + ".h\""
#pragma once
#include "Dumping/AssetDumpingContext.h"
#include GAME_HEADER
namespace GAME
{
void DumpXModel(AssetDumpingContext& context, XAssetInfo<XModel>* asset);
}