9
0
mirror of https://gitlab.com/SamB440/rpgregions-2.git synced 2025-12-29 19:59:11 +00:00

Add support for CustomStructures

This commit is contained in:
SamB440
2023-03-17 17:39:10 +00:00
parent 910085655d
commit 210709e5a2
12 changed files with 163 additions and 7 deletions

View File

@@ -0,0 +1,19 @@
package net.islandearth.rpgregions.api.events;
import org.bukkit.event.Event;
import org.bukkit.event.HandlerList;
public class RPGRegionsReloadEvent extends Event {
private static final HandlerList HANDLER_LIST = new HandlerList();
@Override
public HandlerList getHandlers() {
return HANDLER_LIST;
}
public static HandlerList getHandlerList() {
return HANDLER_LIST;
}
}