暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

TestCommandPcHelper.cs 387B

123456789101112131415161718
  1. using System;
  2. using System.Collections;
  3. namespace UnityEngine.TestTools
  4. {
  5. internal class TestCommandPcHelper
  6. {
  7. public virtual void SetEnumeratorPC(IEnumerator enumerator, int pc)
  8. {
  9. // Noop implementation used in playmode.
  10. }
  11. public virtual int GetEnumeratorPC(IEnumerator enumerator)
  12. {
  13. return 0;
  14. }
  15. }
  16. }