A game about forced loneliness, made by TACStudios
1using System; 2 3namespace UnityEngine.TestTools 4{ 5 /// <summary> 6 /// An interface implemented by a MonoBehaviour test. 7 /// </summary> 8 public interface IMonoBehaviourTest 9 { 10 /// <summary>True when the test is considered finished.</summary> 11 bool IsTestFinished {get; } 12 } 13}