blob: eb09d4396f6fe173a40c4f87250d7dad74fca843 [file] [log] [blame] [raw]
package protocolsupport.api.events;
import org.bukkit.event.HandlerList;
import protocolsupport.api.Connection;
public class ConnectionOpenEvent extends ConnectionEvent {
public ConnectionOpenEvent(Connection connection) {
super(connection);
}
private static final HandlerList list = new HandlerList();
@Override
public HandlerList getHandlers() {
return list;
}
public static HandlerList getHandlerList() {
return list;
}
}