mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-10 06:49:28 -05:00
19 lines
648 B
C++
19 lines
648 B
C++
#pragma once
|
|
|
|
#include "Dumping/AbstractAssetDumper.h"
|
|
#include "Game/T6/T6.h"
|
|
#include "InfoString/InfoString.h"
|
|
|
|
namespace T6
|
|
{
|
|
class AssetDumperWeaponAttachmentUnique final : public AbstractAssetDumper<WeaponAttachmentUnique>
|
|
{
|
|
static void CopyToFullDef(const WeaponAttachmentUnique* attachment, WeaponAttachmentUniqueFull* fullDef);
|
|
static InfoString CreateInfoString(XAssetInfo<WeaponAttachmentUnique>* asset);
|
|
|
|
protected:
|
|
bool ShouldDump(XAssetInfo<WeaponAttachmentUnique>* asset) override;
|
|
void DumpAsset(AssetDumpingContext& context, XAssetInfo<WeaponAttachmentUnique>* asset) override;
|
|
};
|
|
}
|