Consolidate MiniMenu functions

This commit is contained in:
Pazaz 2022-05-04 00:54:04 -04:00
parent 36b0d99c42
commit cf6a86e926
70 changed files with 1202 additions and 1252 deletions

View file

@ -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);
}