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 , before is called.
///
public static readonly Event PreUpdate = new Event();
///
/// This event is fired in , after is called.
///
public static readonly Event Update = new Event();
///
/// This event is fired in , before is called.
///
public static readonly Event PreDraw = new Event();
///
/// This event is fired in , after is called.
///
public static readonly Event Draw = new Event();
}
}