You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
573 B
28 lines
573 B
3 years ago
|
using System;
|
||
|
using System.Diagnostics;
|
||
|
using System.Runtime.CompilerServices;
|
||
|
|
||
|
namespace ET
|
||
|
{
|
||
|
[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)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|