修复LinkXmlProcess在Unity 2019-2022执行OnBeforeRun和OnAfterRun接口函数抛出NotImplementedException的bug

1.x
walon 2025-06-12 15:27:16 +08:00
parent 6226c3a867
commit 28b841562c
1 changed files with 2 additions and 2 deletions

View File

@ -27,12 +27,12 @@ namespace Obfuz.Unity
public void OnBeforeRun(BuildReport report, UnityLinkerBuildPipelineData data)
{
throw new NotImplementedException();
}
public void OnAfterRun(BuildReport report, UnityLinkerBuildPipelineData data)
{
throw new NotImplementedException();
}
#endif