1
0
Fork 0
LaboratoryProtection/Assets/UnityTest/ZXL/Plugs/ETTask/IAwaiter.cs

14 lines
356 B
C#
Raw Permalink Normal View History

2023-09-14 15:36:17 +08:00
namespace DragonSoul.Shared
{
public enum AwaiterStatus: byte
{
/// <summary>The operation has not yet completed.</summary>
Pending = 0,
/// <summary>The operation completed successfully.</summary>
Succeeded = 1,
/// <summary>The operation completed with an error.</summary>
Faulted = 2,
}
}