mirror of
https://github.com/Cysharp/UniTask.git
synced 2026-05-15 19:40:09 +00:00
39 lines
1.0 KiB
C#
39 lines
1.0 KiB
C#
|
|
//using Cysharp.Threading.Tasks.Internal;
|
|||
|
|
//using System;
|
|||
|
|
//using System.Collections.Concurrent;
|
|||
|
|
//using System.Runtime.CompilerServices;
|
|||
|
|
//using System.Threading;
|
|||
|
|
|
|||
|
|
//namespace Cysharp.Threading.Tasks
|
|||
|
|
//{
|
|||
|
|
// public partial struct UniTask
|
|||
|
|
// {
|
|||
|
|
// public static UniTask Delay()
|
|||
|
|
// {
|
|||
|
|
// return default;
|
|||
|
|
// }
|
|||
|
|
|
|||
|
|
// sealed class DelayPromise : IUniTaskSource
|
|||
|
|
// {
|
|||
|
|
// public void GetResult(short token)
|
|||
|
|
// {
|
|||
|
|
// throw new NotImplementedException();
|
|||
|
|
// }
|
|||
|
|
|
|||
|
|
// public UniTaskStatus GetStatus(short token)
|
|||
|
|
// {
|
|||
|
|
// throw new NotImplementedException();
|
|||
|
|
// }
|
|||
|
|
|
|||
|
|
// public void OnCompleted(Action<object> continuation, object state, short token)
|
|||
|
|
// {
|
|||
|
|
// throw new NotImplementedException();
|
|||
|
|
// }
|
|||
|
|
|
|||
|
|
// public UniTaskStatus UnsafeGetStatus()
|
|||
|
|
// {
|
|||
|
|
// throw new NotImplementedException();
|
|||
|
|
// }
|
|||
|
|
// }
|
|||
|
|
// }
|
|||
|
|
//}
|