Plugins: Add IPostProcessPackage

This commit is contained in:
Katy Coe
2020-12-22 03:17:49 +01:00
parent b9409e7425
commit e058c39f19
4 changed files with 19 additions and 2 deletions

View File

@@ -44,6 +44,14 @@ namespace Il2CppInspector.PluginAPI.V100
void GetStringLiterals(Metadata metadata, PluginGetStringLiteralsEventInfo data);
}
/// <summary>
/// Post-process the entire IL2CPP application package after the metadata and binary have been loaded and merged
/// </summary>
public interface IPostProcessPackage
{
void PostProcessPackage(Il2CppInspector package, PluginPostProcessPackageEventInfo data);
}
/// <summary>
/// Post-process the .NET type model to make changes after it has been fully created
/// </summary>