using System; using System.Collections.Generic; namespace SUISS.Scheduling { public interface IScheduler { ICoroutine StartCoroutine(IEnumerator<IYieldStatement> routine); } }