namespace StardewModdingAPI.Events { /// The event priorities for method handlers. public enum EventPriority { /// Low priority. Low = -1000, /// The default priority. Normal = 0, /// High priority. High = 1000 } }