de.eldoria.eldoutilities.debug.data.ServerMetaData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of debugging Show documentation
Show all versions of debugging Show documentation
Utilitites for debugging plugins
/*
* SPDX-License-Identifier: LGPL-3.0-or-later
*
* Copyright (C) EldoriaRPG Team and Contributor
*/
package de.eldoria.eldoutilities.debug.data;
public class ServerMetaData {
protected String version;
protected int currentPlayers;
protected String[] loadedWorlds;
protected PluginMetaData[] plugins;
protected ServerMetaData(String version, int currentPlayers, String[] loadedWorlds, PluginMetaData[] plugins) {
this.version = version;
this.currentPlayers = currentPlayers;
this.loadedWorlds = loadedWorlds;
this.plugins = plugins;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy