mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-05-12 06:56:02 +08:00
22 lines
499 B
Java
22 lines
499 B
Java
package emu.grasscutter.server.event.dispatch;
|
|
|
|
import emu.grasscutter.server.event.ServerEvent;
|
|
|
|
public final class QueryCurrentRegionEvent extends ServerEvent {
|
|
private String regionInfo;
|
|
|
|
public QueryCurrentRegionEvent(String regionInfo) {
|
|
super(Type.DISPATCH);
|
|
|
|
this.regionInfo = regionInfo;
|
|
}
|
|
|
|
public void setRegionInfo(String regionInfo) {
|
|
this.regionInfo = regionInfo;
|
|
}
|
|
|
|
public String getRegionInfo() {
|
|
return this.regionInfo;
|
|
}
|
|
}
|