2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-09-04 07:47:25 +00:00

refactor: streamline zbarrier dumping

This commit is contained in:
Jan Laupetin
2025-07-31 19:46:21 +01:00
parent ab118f3528
commit 566f3994e3
7 changed files with 109 additions and 85 deletions

View File

@@ -0,0 +1,15 @@
#pragma once
#include "Dumping/AbstractAssetDumper.h"
#include "Game/T6/T6.h"
#include "InfoString/InfoString.h"
namespace T6::z_barrier
{
class Dumper final : public AbstractAssetDumper<ZBarrierDef>
{
protected:
bool ShouldDump(XAssetInfo<ZBarrierDef>* asset) override;
void DumpAsset(AssetDumpingContext& context, XAssetInfo<ZBarrierDef>* asset) override;
};
} // namespace T6::z_barrier