addFriend() and removeFriend() functionality

This commit is contained in:
Visne
2019-07-07 23:47:12 +02:00
parent f8003f1d03
commit f5a56e0b17
5 changed files with 34 additions and 2 deletions

View File

@@ -1685,4 +1685,13 @@ public interface Client extends GameShell
*/
void sortMenuEntries();
/**
* Add player to friendlist
*/
void addFriend(String name);
/**
* Remove player from friendlist
*/
void removeFriend(String name);
}