mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-08-05 16:49:39 +00:00
Let's get this project started
This commit is contained in:
commit
4e8311a655
1 changed files with 21 additions and 0 deletions
21
src/org/bukkit/Server.java
Normal file
21
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();
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue