using System; namespace SUISS.Scheduling { public interface ICoroutine : IYieldStatement { void Stop(); bool IsRunning { get; } } }