mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
28 lines
573 B
C#
28 lines
573 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
} |