2020-07-06 18:26:08 -07:00
|
|
|
package d2enum
|
2020-07-03 12:09:16 -07:00
|
|
|
|
|
|
|
// Priority of the event handler
|
|
|
|
type Priority int
|
|
|
|
|
2020-07-10 05:12:28 +02:00
|
|
|
// Priorities
|
2020-07-03 12:09:16 -07:00
|
|
|
const (
|
|
|
|
PriorityLow Priority = iota
|
|
|
|
PriorityDefault
|
|
|
|
PriorityHigh
|
|
|
|
)
|