2020-07-06 21:26:08 -04:00
|
|
|
package d2enum
|
2020-07-03 15:09:16 -04:00
|
|
|
|
|
|
|
// Priority of the event handler
|
|
|
|
type Priority int
|
|
|
|
|
2020-07-09 23:12:28 -04:00
|
|
|
// Priorities
|
2020-07-03 15:09:16 -04:00
|
|
|
const (
|
|
|
|
PriorityLow Priority = iota
|
|
|
|
PriorityDefault
|
|
|
|
PriorityHigh
|
|
|
|
)
|