28 lines
588 B
C#
28 lines
588 B
C#
using System;
|
|
using System.Diagnostics;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace DragonSoul.Shared
|
|
{
|
|
[AsyncMethodBuilder(typeof (AsyncETVoidMethodBuilder))]
|
|
internal struct ETVoid: ICriticalNotifyCompletion
|
|
{
|
|
[DebuggerHidden]
|
|
public void Coroutine()
|
|
{
|
|
}
|
|
|
|
[DebuggerHidden]
|
|
public bool IsCompleted => true;
|
|
|
|
[DebuggerHidden]
|
|
public void OnCompleted(Action continuation)
|
|
{
|
|
}
|
|
|
|
[DebuggerHidden]
|
|
public void UnsafeOnCompleted(Action continuation)
|
|
{
|
|
}
|
|
}
|
|
} |