15 lines
276 B
C#
15 lines
276 B
C#
using System;
|
|
|
|
namespace UnityEditor.PackageManager.UI
|
|
{
|
|
internal interface IBaseOperation
|
|
{
|
|
event Action<Error> OnOperationError;
|
|
event Action OnOperationFinalized;
|
|
|
|
bool IsCompleted { get; }
|
|
|
|
void Cancel();
|
|
}
|
|
}
|