project(mixins): Update

This commit is contained in:
Owain van Brakel
2022-04-20 19:08:54 +02:00
parent cf45ff2fd4
commit ac38fddbf9
6 changed files with 289 additions and 33 deletions

View File

@@ -194,6 +194,10 @@ public interface RSClient extends RSGameEngine, Client
@Override
void setDraggedOnWidget(Widget widget);
@Import("widgetDragDuration")
@Override
int getDragTime();
@Import("Widget_interfaceComponents")
RSWidget[][] getWidgets();
@@ -329,6 +333,9 @@ public interface RSClient extends RSGameEngine, Client
@Override
void setMenuOptionCount(int menuOptionCount);
@Import("tempMenuAction")
RSMenuAction getTempMenuAction();
@Import("menuActions")
String[] getMenuOptions();

View File

@@ -28,18 +28,33 @@ import net.runelite.mapping.Import;
public interface RSMenuAction
{
@Import("action")
String getOption();
@Import("action")
void setOption(String yes);
@Import("opcode")
int getOpcode();
@Import("opcode")
void setOpcode(int yes);
@Import("identifier")
int getIdentifier();
@Import("identifier")
void setIdentifier(int yes);
@Import("param0")
int getParam0();
@Import("param0")
void setParam0(int yes);
@Import("param1")
int getParam1();
@Import("param1")
void setParam1(int yes);
}