1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2025-02-11 19:17:09 -05:00
OpenDiablo2/d2common/d2enum/input_priority.go

15 lines
334 B
Go
Raw Normal View History

package d2enum
// Priority of the event handler
type Priority int
//noinspection GoUnusedConst // nothing is low priority yet
const (
// PriorityLow is a low priority handler
PriorityLow Priority = iota
// PriorityDefault is a default priority handler
PriorityDefault
// PriorityHigh is a high priority handler
PriorityHigh
)