using System.Collections; namespace EventParts; public interface EventPart { EventController parent { get; set; } bool parallel { get; set; } Coroutine routine { get; set; } IEnumerator Routine(); }