mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-05-12 06:56:02 +08:00
18 lines
328 B
Java
18 lines
328 B
Java
package emu.grasscutter.server.event;
|
|
|
|
/**
|
|
* An event that is related to the internals of the server.
|
|
*/
|
|
public abstract class ServerEvent extends Event {
|
|
protected final Type type;
|
|
|
|
public ServerEvent(Type type) {
|
|
this.type = type;
|
|
}
|
|
|
|
public enum Type {
|
|
DISPATCH,
|
|
GAME
|
|
}
|
|
}
|