25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 lines
390 B

  1. #pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
  2. using System;
  3. using System.Collections;
  4. namespace Cysharp.Threading.Tasks
  5. {
  6. // UnityEngine Bridges.
  7. public partial struct UniTask
  8. {
  9. public static IEnumerator ToCoroutine(Func<UniTask> taskFactory)
  10. {
  11. return taskFactory().ToCoroutine();
  12. }
  13. }
  14. }