api: add methods to get clan owner and chat name

Co-authored-by: trimbe <benno.tremback@gmail.com>
This commit is contained in:
Adam
2019-03-02 18:59:13 -05:00
parent facf438b50
commit e5f9db4fb4
3 changed files with 34 additions and 0 deletions

View File

@@ -24,7 +24,13 @@
*/
package net.runelite.rs.api;
import net.runelite.mapping.Import;
public interface RSClanMemberManager extends RSNameableContainer<RSClanMember>
{
@Import("clanOwner")
String getClanOwner();
@Import("clanChatName")
String getClanChatName();
}