client: Improve menumanager (#2026)
* make menumanager work with everything it didn't work with before * rebuild left click before render instead of on client tick * Remove useless checks which were breaking when dragging in bank * Change rsclient line breaks (only 5th fucking time this pr dw) * Rename arg1 & arg2 getters/fields to be more consistent
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -24,6 +24,22 @@
|
||||
*/
|
||||
package net.runelite.rs.api;
|
||||
|
||||
import net.runelite.mapping.Import;
|
||||
|
||||
public interface RSMenuAction
|
||||
{
|
||||
@Import("action")
|
||||
void setOption(String yes);
|
||||
|
||||
@Import("opcode")
|
||||
void setOpcode(int yes);
|
||||
|
||||
@Import("identifier")
|
||||
void setIdentifier(int yes);
|
||||
|
||||
@Import("param0")
|
||||
void setParam0(int yes);
|
||||
|
||||
@Import("param1")
|
||||
void setParam1(int yes);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user