2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-09-04 07:47:25 +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/T6/T6.h"
namespace T6::localize
{
class Dumper final : public IAssetDumper<LocalizeEntry>
{
public:
void DumpPool(AssetDumpingContext& context, AssetPool<LocalizeEntry>* pool) override;
};
} // namespace T6::localize