mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-06-26 10:58:04 +00:00
26 lines
633 B
Plaintext
26 lines
633 B
Plaintext
#options GAME (IW3, IW4, IW5, T4, T5, T6)
|
|
|
|
#filename "Game/" + GAME + "/XModel/XModelDumper" + GAME + ".h"
|
|
|
|
#set GAME_HEADER "\"Game/" + GAME + "/" + GAME + ".h\""
|
|
|
|
// This file was templated.
|
|
// See XModelDumper.h.template.
|
|
// Do not modify, changes will be lost.
|
|
|
|
#pragma once
|
|
|
|
#include "Dumping/AbstractAssetDumper.h"
|
|
#include GAME_HEADER
|
|
|
|
#set CLASS_NAME "Dumper" + GAME
|
|
|
|
namespace xmodel
|
|
{
|
|
class CLASS_NAME final : public AbstractAssetDumper<GAME::AssetXModel>
|
|
{
|
|
protected:
|
|
void DumpAsset(AssetDumpingContext& context, const XAssetInfo<GAME::AssetXModel::Type>& asset) override;
|
|
};
|
|
} // namespace xmodel
|