project: Update mixins

This commit is contained in:
Owain van Brakel
2019-11-06 12:38:16 +01:00
parent 5efce1e3d6
commit ce8f3f48c0
23 changed files with 814 additions and 322 deletions

View File

@@ -1838,6 +1838,11 @@ public interface Client extends GameShell
*/
int getItemCount();
/**
* Makes all widgets behave as if they are {@link WidgetConfig#WIDGET_USE_TARGET}
*/
void setAllWidgetsAreOpTargetable(boolean value);
/**
* Adds a MenuEntry to the current menu.
*/

View File

@@ -232,6 +232,11 @@ public enum MenuOpcode
*/
WIDGET_DEFAULT(57),
/**
* Casting a spell / op target on a widget
*/
SPELL_CAST_ON_WIDGET(58),
/**
* Sub 1000 so it doesn't get sorted down in the list
*/

View File

@@ -65,4 +65,5 @@ public interface WallObject extends TileObject
* @see net.runelite.api.model.Jarvis
*/
Shape getConvexHull();
Shape getConvexHull2();
}