12345678910111213141516171819202122232425262728 |
- 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)
- {
- }
- }
- }
|