mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-06 07:02:18 -07:00
Let's get this project started
By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
21
paper-api/src/org/bukkit/Server.java
Normal file
21
paper-api/src/org/bukkit/Server.java
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
|
||||||
|
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();
|
||||||
|
}
|
Reference in New Issue
Block a user