api: add friends chat kick rank

This commit is contained in:
Adam
2022-04-08 11:39:34 -04:00
parent 478f2fb126
commit dc009bd7af

View File

@@ -39,4 +39,18 @@ public interface FriendsChatManager extends NameableContainer<FriendsChatMember>
* @return
*/
String getName();
/**
* Get the local player's rank in the friend chat
*
* @return
*/
FriendsChatRank getMyRank();
/**
* Get the rank required to kick members from the friends chat
*
* @return
*/
FriendsChatRank getKickRank();
}