mirror of
https://github.com/CitizensDev/Citizens2.git
synced 2024-11-06 10:50:22 +01:00
19 lines
408 B
Java
19 lines
408 B
Java
package net.citizensnpcs;
|
|
|
|
import net.citizensnpcs.api.event.CitizensEvent;
|
|
|
|
import org.bukkit.event.HandlerList;
|
|
|
|
public class CitizensDisableEvent extends CitizensEvent {
|
|
@Override
|
|
public HandlerList getHandlers() {
|
|
return handlers;
|
|
}
|
|
|
|
private static final HandlerList handlers = new HandlerList();
|
|
|
|
public static HandlerList getHandlerList() {
|
|
return handlers;
|
|
}
|
|
}
|