mirror of
https://github.com/PaperMC/Paper.git
synced 2025-02-11 10:01:55 +01:00
SPIGOT-1714: Draft API for player list header / footer
By: md_5 <git@md-5.net>
This commit is contained in:
parent
19b0790b3c
commit
6400a40fb2
@ -84,6 +84,53 @@ public interface Player extends HumanEntity, Conversable, CommandSender, Offline
|
||||
*/
|
||||
public void setPlayerListName(String name);
|
||||
|
||||
/**
|
||||
* Gets the currently displayed player list header for this player.
|
||||
*
|
||||
* @return player list header or null
|
||||
* @deprecated draft API
|
||||
*/
|
||||
@Deprecated
|
||||
public String getPlayerListHeader();
|
||||
|
||||
/**
|
||||
* Gets the currently displayed player list footer for this player.
|
||||
*
|
||||
* @return player list header or null
|
||||
* @deprecated draft API
|
||||
*/
|
||||
@Deprecated
|
||||
public String getPlayerListFooter();
|
||||
|
||||
/**
|
||||
* Sets the currently displayed player list header for this player.
|
||||
*
|
||||
* @param header player list header, null for empty
|
||||
* @deprecated draft API
|
||||
*/
|
||||
@Deprecated
|
||||
public void setPlayerListHeader(String header);
|
||||
|
||||
/**
|
||||
* Sets the currently displayed player list footer for this player.
|
||||
*
|
||||
* @param footer player list footer, null for empty
|
||||
* @deprecated draft API
|
||||
*/
|
||||
@Deprecated
|
||||
public void setPlayerListFooter(String footer);
|
||||
|
||||
/**
|
||||
* Sets the currently displayed player list header and footer for this
|
||||
* player.
|
||||
*
|
||||
* @param header player list header, null for empty
|
||||
* @param footer player list footer, null for empty
|
||||
* @deprecated draft API
|
||||
*/
|
||||
@Deprecated
|
||||
public void setPlayerListHeaderFooter(String header, String footer);
|
||||
|
||||
/**
|
||||
* Set the target of the player's compass.
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user