2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-10-28 17:16:56 +00:00

chore: generalize IAssetDumper interface

This commit is contained in:
Jan Laupetin
2025-10-15 20:06:01 +01:00
parent c6e9cbedda
commit 6a84d1ea68
152 changed files with 1051 additions and 586 deletions

View File

@@ -151,8 +151,8 @@ namespace
AssetPoolDynamic<FontIcon> fontIconPool(0);
GivenFontIcon("fonticon/test.csv", fontIconPool, memory);
font_icon::JsonDumperT6 dumper;
dumper.DumpPool(context, fontIconPool);
font_icon::JsonDumperT6 dumper(fontIconPool);
dumper.Dump(context);
const auto* file = mockOutput.GetMockedFile("fonticon/test.json");
REQUIRE(file);