commit 4e8311a6551e8d7794cff73c57a481251b47459c Author: Dinnerbone Date: Tue Dec 21 15:32:27 2010 +0000 Let's get this project started diff --git a/src/org/bukkit/Server.java b/src/org/bukkit/Server.java new file mode 100644 index 00000000..bae1b707 --- /dev/null +++ b/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(); +}