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

10 lines
210 B
C#
Raw Normal View History

using Coroutine;
namespace MLEM.Startup {
public static class CoroutineEvents {
public static readonly Event Update = new Event();
public static readonly Event Draw = new Event();
}
}