mine2d/Mine2d/engine/system/EventPriority.cs

12 lines
160 B
C#

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