using Coroutine; namespace MLEM.Startup { /// /// This class contains a set of events for the coroutine system that are automatically fired in . /// public static class CoroutineEvents { /// /// This event is fired in /// public static readonly Event Update = new Event(); /// /// This event is fired in /// public static readonly Event Draw = new Event(); } }