mirror of
https://gitlab.com/2009scape/rt4-client.git
synced 2026-08-17 00:15:15 -06:00
Moved source to rt4 package so external code can depend on it
This commit is contained in:
parent
dc6deb9151
commit
153d8569b5
624 changed files with 1253 additions and 7 deletions
21
client/src/main/java/rt4/IntNode.java
Normal file
21
client/src/main/java/rt4/IntNode.java
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
package rt4;
|
||||
|
||||
import org.openrs2.deob.annotation.OriginalArg;
|
||||
import org.openrs2.deob.annotation.OriginalClass;
|
||||
import org.openrs2.deob.annotation.OriginalMember;
|
||||
|
||||
@OriginalClass("client!ka")
|
||||
public final class IntNode extends Node {
|
||||
|
||||
@OriginalMember(owner = "client!ka", name = "p", descriptor = "I")
|
||||
public int value;
|
||||
|
||||
@OriginalMember(owner = "client!ka", name = "<init>", descriptor = "()V")
|
||||
public IntNode() {
|
||||
}
|
||||
|
||||
@OriginalMember(owner = "client!ka", name = "<init>", descriptor = "(I)V")
|
||||
public IntNode(@OriginalArg(0) int arg0) {
|
||||
this.value = arg0;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue