Newer
Older
MI-AudioMixer / Library / PackageCache / com.unity.package-manager-ui@2.0.3 / Editor / Sources / Services / Interfaces / IBaseOperation.cs
@flameshadow flameshadow on 10 Apr 2019 276 bytes first commit
using System;

namespace UnityEditor.PackageManager.UI
{
    internal interface IBaseOperation
    {
        event Action<Error> OnOperationError;
        event Action OnOperationFinalized;

        bool IsCompleted { get; }
                
        void Cancel();
    }
}