mine2d/Mine2d/engine/system/EventPriority.cs

12 lines
158 B
C#

namespace mine2d.engine.system;
public enum EventPriority
{
Lowest = 0,
Low = 1,
Normal = 2,
High = 3,
Highest = 4,
Important = 5,
}