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

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();
}
}