Add overlay menu support

Co-authored-by: TheStonedTurtle <TheStonedTurtle@users.noreply.github.com>
This commit is contained in:
Adam
2019-01-14 19:45:46 -05:00
parent ccae0c2c48
commit aabb1dae7b
7 changed files with 219 additions and 7 deletions

View File

@@ -260,6 +260,10 @@ public enum MenuAction
* Menu action injected by runelite for its menu items.
*/
RUNELITE(1500),
/**
* Menu action injected by runelite for overlay menu items.
*/
RUNELITE_OVERLAY(1501),
FOLLOW(2046),
TRADE(2047),

View File

@@ -60,10 +60,4 @@ public class MenuEntry
*/
private int param1;
@Override
public String toString()
{
return "MenuEntry{" + "option=" + option + ", target=" + target + ", identifier=" + identifier + ", type=" + type + ", param0=" + param0 + ", param1=" + param1 + '}';
}
}