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

20 lines
397 B

  1. #pragma warning disable CS1591
  2. #pragma warning disable CS0436
  3. using System;
  4. using System.Diagnostics;
  5. using System.Runtime.CompilerServices;
  6. using Cysharp.Threading.Tasks.CompilerServices;
  7. namespace Cysharp.Threading.Tasks
  8. {
  9. [AsyncMethodBuilder(typeof(AsyncUniTaskVoidMethodBuilder))]
  10. public readonly struct UniTaskVoid
  11. {
  12. public void Forget()
  13. {
  14. }
  15. }
  16. }