using System; namespace SUISSEngine { [Obsolete] public interface ICoroutineTask { void Stop(); bool Running { get; } bool IsDone { get; } void CheckForException(); object YieldUntilDone(); } }