Enum EventListenerPriority
Represents the priority of an event listener. The invocation order is based on from lowest to highest.
Namespace: OpenMod.API.Eventing
Assembly: OpenMod.API.dll
Syntax
public enum EventListenerPriority : int
Fields
| Name | Description |
|---|---|
| High | The high priority. |
| Highest | The highest priority. |
| Low | The low priority. |
| Lowest | The lowest priority. Lowest priority event listeners are executed first. |
| Monitor | The monitor priority. Monitor priority event listeners are called last and must not change event state. They can also not cancel or uncancel events. |
| Normal | The normal priority. This is the default value if no priority is set. |