feat: add dlc dumper

This commit is contained in:
2026-04-28 15:24:06 -03:00
parent 13bb48ccce
commit 76e9c8eec4
3 changed files with 78 additions and 1 deletions
+10
View File
@@ -65,6 +65,16 @@ else
Console.WriteLine("Failed to dump perks");
}
string? dlcsJSON = dumper.DumpDLCs();
if (dlcsJSON != null)
{
File.WriteAllText("dlcs.json", dlcsJSON);
}
else
{
Console.WriteLine("Failed to dump dlcs");
}
Console.WriteLine("Dumper finished");
return 0;