Merge pull request #560 from runelite-extended/spell-info

Spell info hooks
This commit is contained in:
Tyler Bochard
2019-06-11 07:40:51 -04:00
committed by GitHub
2 changed files with 10 additions and 1 deletions

View File

@@ -1652,5 +1652,8 @@ public interface Client extends GameShell
MouseRecorder getMouseRecorder();
void setPrintMenuActions(boolean b);
String getSelectedSpellName();
boolean getIsSpellSelected();
}

View File

@@ -995,4 +995,10 @@ public interface RSClient extends RSGameShell, Client
@Import("mouseRecorder")
RSMouseRecorder getMouseRecorder();
@Import("selectedSpellName")
String getSelectedSpellName();
@Import("isSpellSelected")
boolean getIsSpellSelected();
}