2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-10-19 21:15:20 +00:00

refactor: streamline localize dumper

This commit is contained in:
Jan Laupetin
2025-07-29 20:44:24 +01:00
parent 22dbf57269
commit 934ba7f95a
20 changed files with 245 additions and 230 deletions

View File

@@ -0,0 +1,13 @@
#pragma once
#include "Dumping/AbstractAssetDumper.h"
#include "Game/T5/T5.h"
namespace T5::localize
{
class Dumper final : public IAssetDumper<LocalizeEntry>
{
public:
void DumpPool(AssetDumpingContext& context, AssetPool<LocalizeEntry>* pool) override;
};
} // namespace T5::localize