2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-09-05 16:27:27 +00:00

refactor: streamline stringtable dumper

This commit is contained in:
Jan Laupetin
2025-07-30 22:59:57 +01:00
parent 0eb14890ab
commit e26c66ed60
20 changed files with 226 additions and 211 deletions

View File

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