説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

EnumerableTestState.cs 174B

1234567891011
  1. using System;
  2. namespace UnityEngine.TestTools
  3. {
  4. [Serializable]
  5. internal class EnumerableTestState
  6. {
  7. public int Repeat;
  8. public int Retry;
  9. }
  10. }