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

dev.robocode.tankroyale.botapi.events.ConnectedEvent Maven / Gradle / Ivy

There is a newer version: 0.26.1
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy