bentobox/src/main/java/world/bentobox/bentobox/api/events/BentoBoxReadyEvent.java

25 lines
532 B
Java

package world.bentobox.bentobox.api.events;
import org.bukkit.event.HandlerList;
import org.eclipse.jdt.annotation.NonNull;
/**
* Fired when plugin is ready to play and all files are loaded
*
* @author tastybento
*/
public class BentoBoxReadyEvent extends BentoBoxEvent {
private static final HandlerList handlers = new HandlerList();
@Override
public @NonNull HandlerList getHandlers() {
return getHandlerList();
}
public static HandlerList getHandlerList() {
return handlers;
}
}