... Actually push the OfflinePlayer interface!

This commit is contained in:
Dinnerbone 2011-09-03 00:48:41 +01:00
parent e1f69e0867
commit 6d3a779894

View File

@ -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();
}