mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2025-02-10 18:47:23 -05:00
* moved filter constants back to d2enum * moving key and mouse button enums into d2enum * moving render type enum into d2enum * moving input even priority enums into d2enum * moving terminal enums into d2enum
15 lines
334 B
Go
15 lines
334 B
Go
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
|
|
)
|