GlobalGameJame/Library/PackageCache/com.unity.test-framework@1.1.9/UnityEngine.TestRunner/TestRunner/Messages/IEditModeTestYieldInstructi...

13 lines
243 B
C#
Raw Normal View History

2020-01-31 15:10:04 +00:00
using System.Collections;
namespace UnityEngine.TestTools
{
public interface IEditModeTestYieldInstruction
{
bool ExpectDomainReload { get; }
bool ExpectedPlaymodeState { get; }
IEnumerator Perform();
}
}