mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
11 lines
293 B
C#
11 lines
293 B
C#
namespace UnityEngine.TestTools
|
|
{
|
|
/// <summary>
|
|
/// An interface implemented by a MonoBehaviour test.
|
|
/// </summary>
|
|
public interface IMonoBehaviourTest
|
|
{
|
|
/// <summary>True when the test is considered finished.</summary>
|
|
bool IsTestFinished {get; }
|
|
}
|
|
}
|