All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.badbird5907.blib.event.SimpleEvent Maven / Gradle / Ivy

There is a newer version: 2.1.11-REL
Show newest version
package net.badbird5907.blib.event;

import lombok.Getter;
import org.bukkit.Bukkit;
import org.bukkit.event.Event;
import org.bukkit.event.HandlerList;

public class SimpleEvent extends Event {
    @Getter
    private static final HandlerList handlerList = new HandlerList();
    @Override
    public HandlerList getHandlers() {
        return handlerList;
    }
    public void call(){
        Bukkit.getPluginManager().callEvent(this);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy