blob: d118c47df3e6f656ea4ce9e892afb513a5b41142 [file] [log] [blame] [raw]
package protocolsupport.api.events;
import org.bukkit.event.HandlerList;
import protocolsupport.api.Connection;
/**
* This event is fired after connection with client is open
*/
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;
}
}