IRemoveOperation.cs 330 B

1234567891011
  1. using System;
  2. namespace UnityEditor.PackageManager.UI
  3. {
  4. internal interface IRemoveOperation : IBaseOperation
  5. {
  6. event Action<PackageInfo> OnOperationSuccess;
  7. void RemovePackageAsync(PackageInfo package, Action<PackageInfo> doneCallbackAction = null, Action<Error> errorCallbackAction = null);
  8. }
  9. }