Added kick player.

This commit is contained in:
speakeasy
2011-01-15 09:20:29 +08:00
committed by Warren
parent 773c7dc489
commit df1a56c3a3

View File

@@ -47,4 +47,11 @@ public interface Player extends HumanEntity {
* @return the player's address
*/
public InetSocketAddress getAddress();
/**
* Kicks player with custom kick message.
*
* @return
*/
public void kickPlayer(String message);
}