summaryrefslogtreecommitdiff
path: root/src/SMAPI/Events/EventPriority.cs
blob: 1efb4e2ac2303306500f9e5737fbd35122e9fdf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace StardewModdingAPI.Events
{
    /// <summary>The event priorities for method handlers.</summary>
    public enum EventPriority
    {
        /// <summary>Low priority.</summary>
        Low = -1000,

        /// <summary>The default priority.</summary>
        Normal = 0,

        /// <summary>High priority.</summary>
        High = 1000
    }
}