mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-05-29 11:40:21 +08:00
19 lines
341 B
Java
19 lines
341 B
Java
package emu.grasscutter.server.event;
|
|
|
|
public enum HandlerPriority {
|
|
/**
|
|
* The handler will be called before every other handler.
|
|
*/
|
|
HIGH,
|
|
|
|
/**
|
|
* The handler will be called the same time as other handlers.
|
|
*/
|
|
NORMAL,
|
|
|
|
/**
|
|
* The handler will be called after every other handler.
|
|
*/
|
|
LOW
|
|
}
|