TestCommandPcHelper.cs 387 B

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. }