13 lines
243 B
C#
13 lines
243 B
C#
|
using System.Collections;
|
||
|
|
||
|
namespace UnityEngine.TestTools
|
||
|
{
|
||
|
public interface IEditModeTestYieldInstruction
|
||
|
{
|
||
|
bool ExpectDomainReload { get; }
|
||
|
bool ExpectedPlaymodeState { get; }
|
||
|
|
||
|
IEnumerator Perform();
|
||
|
}
|
||
|
}
|