dev.robocode.tankroyale.botapi.events.ConnectedEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of robocode-tankroyale-bot-api Show documentation
Show all versions of robocode-tankroyale-bot-api Show documentation
Robocode Tank Royale Bot API for Java
package dev.robocode.tankroyale.botapi.events;
import java.net.URI;
/**
* Event occurring when bot gets connected to server
*/
public final class ConnectedEvent extends ConnectionEvent {
/**
* Initializes a new instance of the ConnectedEvent class.
*
* @param serverUri is the URI of the server.
*/
public ConnectedEvent(URI serverUri) {
super(serverUri);
}
}