IL2CPP: Add APIs to save processed metadata and binary to disk

This commit is contained in:
Katy Coe
2020-12-09 19:43:29 +01:00
parent 3b8e518b7c
commit f6eed36284
6 changed files with 28 additions and 2 deletions

View File

@@ -594,6 +594,10 @@ namespace Il2CppInspector
Console.SetOut(stdout);
return processors;
}
// Savers
public void SaveMetadataToFile(string pathname) => Metadata.SaveToFile(pathname);
public void SaveBinaryToFile(string pathname) => Binary.SaveToFile(pathname);
#endregion
}
}