34 lines
719 B
C#
34 lines
719 B
C#
|
using System;
|
|||
|
using System.Diagnostics;
|
|||
|
using System.Runtime.CompilerServices;
|
|||
|
|
|||
|
namespace DragonSoul.Shared
|
|||
|
{
|
|||
|
[AsyncMethodBuilder(typeof (AsyncETTaskCompletedMethodBuilder))]
|
|||
|
public struct ETTaskCompleted: ICriticalNotifyCompletion
|
|||
|
{
|
|||
|
[DebuggerHidden]
|
|||
|
public ETTaskCompleted GetAwaiter()
|
|||
|
{
|
|||
|
return this;
|
|||
|
}
|
|||
|
|
|||
|
[DebuggerHidden]
|
|||
|
public bool IsCompleted => true;
|
|||
|
|
|||
|
[DebuggerHidden]
|
|||
|
public void GetResult()
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
[DebuggerHidden]
|
|||
|
public void OnCompleted(Action continuation)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
[DebuggerHidden]
|
|||
|
public void UnsafeOnCompleted(Action continuation)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|