project(mixins): Update
This commit is contained in:
@@ -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();
|
||||
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user