Game/Library/PackageCache/com.unity.package-manager-ui@2.0.13/Editor/Sources/Services/Interfaces/IRemoveOperation.cs
2021-01-16 18:29:12 +01:00

12 lines
330 B
C#

using System;
namespace UnityEditor.PackageManager.UI
{
internal interface IRemoveOperation : IBaseOperation
{
event Action<PackageInfo> OnOperationSuccess;
void RemovePackageAsync(PackageInfo package, Action<PackageInfo> doneCallbackAction = null, Action<Error> errorCallbackAction = null);
}
}