mirror of
https://gitlab.com/2009scape/rt4-client.git
synced 2026-08-17 08:25:14 -06:00
Consolidate MiniMenu functions
This commit is contained in:
parent
36b0d99c42
commit
cf6a86e926
70 changed files with 1202 additions and 1252 deletions
|
|
@ -3,10 +3,23 @@ package rt4;
|
|||
import org.openrs2.deob.annotation.OriginalArg;
|
||||
import org.openrs2.deob.annotation.OriginalClass;
|
||||
import org.openrs2.deob.annotation.OriginalMember;
|
||||
import org.openrs2.deob.annotation.Pc;
|
||||
|
||||
@OriginalClass("client!q")
|
||||
public abstract class ReferenceNodeFactory {
|
||||
|
||||
@OriginalMember(owner = "client!q", name = "a", descriptor = "(Lclient!gf;I)Lclient!gf;")
|
||||
public abstract ReferenceNode method1027(@OriginalArg(0) ReferenceNode arg0);
|
||||
@OriginalMember(owner = "client!uh", name = "ab", descriptor = "Lclient!q;")
|
||||
public static final ReferenceNodeFactory SOFT_REFERENCE_NODE_FACTORY = createSoftReferenceNodeFactory();
|
||||
|
||||
@OriginalMember(owner = "client!dh", name = "b", descriptor = "(I)Lclient!q;")
|
||||
public static ReferenceNodeFactory createSoftReferenceNodeFactory() {
|
||||
try {
|
||||
return new SoftReferenceNodeFactory();
|
||||
} catch (@Pc(15) Throwable local15) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
@OriginalMember(owner = "client!q", name = "a", descriptor = "(Lclient!gf;I)Lclient!gf;")
|
||||
public abstract ReferenceNode create(@OriginalArg(0) ReferenceNode arg0);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue