geforkt von Mirrors/Paper
22 Zeilen
420 B
Java
22 Zeilen
420 B
Java
|
|
||
|
package org.bukkit;
|
||
|
|
||
|
/**
|
||
|
* Represents a server implementation
|
||
|
*/
|
||
|
public interface Server {
|
||
|
/**
|
||
|
* Gets the name of this server implementation
|
||
|
*
|
||
|
* @return name of this server implementation
|
||
|
*/
|
||
|
public String getName();
|
||
|
|
||
|
/**
|
||
|
* Gets the version string of this server implementation.
|
||
|
*
|
||
|
* @return version of this server implementation
|
||
|
*/
|
||
|
public String getVersion();
|
||
|
}
|