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

de.epsdev.bungeeautoserver.api.ServerInfo Maven / Gradle / Ivy

The newest version!
package de.epsdev.bungeeautoserver.api;

public class ServerInfo {

    public String name;
    public int maxPlayers;
    public int curPlayers;
    public boolean closed;

    public ServerInfo(String name, int maxPlayers, int curPlayers, boolean closed){
        this.name = name;
        this.curPlayers = curPlayers;
        this.maxPlayers = maxPlayers;
        this.closed = closed;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy