geforkt von Mirrors/Paper
Add Player interface
By: Dinnerbone <dinnerbone@dinnerbone.com>
Dieser Commit ist enthalten in:
Ursprung
51ec422254
Commit
94c43fd0fa
22
paper-api/src/org/bukkit/Player.java
Normale Datei
22
paper-api/src/org/bukkit/Player.java
Normale Datei
@ -0,0 +1,22 @@
|
|||||||
|
|
||||||
|
package org.bukkit;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents a player, connected or not
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public interface Player {
|
||||||
|
/**
|
||||||
|
* Returns the name of this player
|
||||||
|
*
|
||||||
|
* @return Player name
|
||||||
|
*/
|
||||||
|
public String getName();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks if this player is currently online
|
||||||
|
*
|
||||||
|
* @return true if they are online
|
||||||
|
*/
|
||||||
|
public boolean isOnline();
|
||||||
|
}
|
@ -18,4 +18,11 @@ public interface Server {
|
|||||||
* @return version of this server implementation
|
* @return version of this server implementation
|
||||||
*/
|
*/
|
||||||
public String getVersion();
|
public String getVersion();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets a list of all currently logged in players
|
||||||
|
*
|
||||||
|
* @return An array of Players that are currently online
|
||||||
|
*/
|
||||||
|
public Player[] getOnlinePlayers();
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren