de.epsdev.bungeeautoserver.api.ServerInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bungeeautoserver.api Show documentation
Show all versions of bungeeautoserver.api Show documentation
A tool used for automating bungeecord-networks.
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;
}
}