Skeleton API Implementations

This contains the basic, empty implementations for some Spigot-API extensions. They are included early in the patching progress so that compilation will still succeed midway despite the APIs only being provided by subsequent patches.

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot
2013-06-02 15:10:56 +10:00
parent 02380b2f27
commit 6b0bae2fb6
9 changed files with 99 additions and 0 deletions

View File

@@ -2559,4 +2559,16 @@ public final class CraftServer implements Server {
public UnsafeValues getUnsafe() {
return CraftMagicNumbers.INSTANCE;
}
// Spigot start
private final org.bukkit.Server.Spigot spigot = new org.bukkit.Server.Spigot()
{
};
public org.bukkit.Server.Spigot spigot()
{
return this.spigot;
}
// Spigot end
}