13
0
geforkt von Mirrors/Paper

... Actually push the OfflinePlayer interface!

By: Dinnerbone <dinnerbone@dinnerbone.com>
Dieser Commit ist enthalten in:
Bukkit/Spigot 2011-09-03 00:48:41 +01:00
Ursprung 498e63dbfa
Commit 73b3f6def2

Datei anzeigen

@ -0,0 +1,19 @@
package org.bukkit;
import org.bukkit.permissions.ServerOperator;
public interface OfflinePlayer extends ServerOperator {
/**
* Checks if this player is currently online
*
* @return true if they are online
*/
public boolean isOnline();
/**
* Returns the name of this player
*
* @return Player name
*/
public String getName();
}