1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-23 09:03:38 +02:00
MLEM/MLEM.Startup/CoroutineEvents.cs

19 lines
590 B
C#

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