commit 51ec4222544a25b1764a5ae1e0a868b9eb1a6ee0 Author: Bukkit/Spigot Date: Tue Dec 21 15:32:27 2010 +0000 Let's get this project started By: Dinnerbone diff --git a/paper-api/src/org/bukkit/Server.java b/paper-api/src/org/bukkit/Server.java new file mode 100644 index 000000000..bae1b707d --- /dev/null +++ b/paper-api/src/org/bukkit/Server.java @@ -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(); +}