mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-05-21 09:29:51 +08:00
Overhaul event handling (designed by WetABQ#3417)
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user