Add support for fetching hidden players

By: Tux <write@imaginarycode.com>
This commit is contained in:
Bukkit/Spigot 2014-02-09 14:02:11 -05:00
parent 84ac5b3cf2
commit 666a89b3e3

View File

@ -2308,6 +2308,16 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
public void respawn() {
throw new UnsupportedOperationException("Not supported yet.");
}
/**
* Gets all players hidden with {@link #hidePlayer(org.bukkit.entity.Player)}.
*
* @return a Set with all hidden players
*/
@NotNull
public java.util.Set<Player> getHiddenPlayers() {
throw new UnsupportedOperationException("Not supported yet.");
}
}
@NotNull