Newer
Older
MI-AudioMixer / Library / PackageCache / com.unity.package-manager-ui@2.0.3 / Editor / Sources / Services / Interfaces / IRemoveOperation.cs
@flameshadow flameshadow on 10 Apr 2019 330 bytes first commit
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);
    }
}