mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-09-02 23:17:26 +00:00
18 lines
520 B
C++
18 lines
520 B
C++
#pragma once
|
|
|
|
#include "Dumping/AbstractAssetDumper.h"
|
|
#include "Game/T6/T6.h"
|
|
#include "InfoString/InfoString.h"
|
|
|
|
namespace T6
|
|
{
|
|
class AssetDumperWeaponAttachment final : public AbstractAssetDumper<WeaponAttachment>
|
|
{
|
|
static InfoString CreateInfoString(XAssetInfo<WeaponAttachment>* asset);
|
|
|
|
protected:
|
|
bool ShouldDump(XAssetInfo<WeaponAttachment>* asset) override;
|
|
void DumpAsset(AssetDumpingContext& context, XAssetInfo<WeaponAttachment>* asset) override;
|
|
};
|
|
} // namespace T6
|