IEditModeTestYieldInstruction.cs 243 B

123456789101112
  1. using System.Collections;
  2. namespace UnityEngine.TestTools
  3. {
  4. public interface IEditModeTestYieldInstruction
  5. {
  6. bool ExpectDomainReload { get; }
  7. bool ExpectedPlaymodeState { get; }
  8. IEnumerator Perform();
  9. }
  10. }