mirror of
https://gitlab.com/2009scape/rt4-client.git
synced 2026-08-17 08:25:14 -06:00
Partially refactored RawModel
This commit is contained in:
parent
3531b1c57c
commit
d3265b6ae6
13 changed files with 1164 additions and 1116 deletions
33
client/src/main/java/rt4/VertexNormal.java
Normal file
33
client/src/main/java/rt4/VertexNormal.java
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
package rt4;
|
||||
|
||||
import org.openrs2.deob.annotation.OriginalArg;
|
||||
import org.openrs2.deob.annotation.OriginalClass;
|
||||
import org.openrs2.deob.annotation.OriginalMember;
|
||||
|
||||
@OriginalClass("client!hd")
|
||||
public final class VertexNormal {
|
||||
|
||||
@OriginalMember(owner = "client!hd", name = "b", descriptor = "I")
|
||||
public int y;
|
||||
|
||||
@OriginalMember(owner = "client!hd", name = "d", descriptor = "I")
|
||||
public int triangles;
|
||||
|
||||
@OriginalMember(owner = "client!hd", name = "m", descriptor = "I")
|
||||
public int z;
|
||||
|
||||
@OriginalMember(owner = "client!hd", name = "n", descriptor = "I")
|
||||
public int x;
|
||||
|
||||
@OriginalMember(owner = "client!hd", name = "<init>", descriptor = "()V")
|
||||
public VertexNormal() {
|
||||
}
|
||||
|
||||
@OriginalMember(owner = "client!hd", name = "<init>", descriptor = "(Lclient!hd;)V")
|
||||
public VertexNormal(@OriginalArg(0) VertexNormal arg0) {
|
||||
this.triangles = arg0.triangles;
|
||||
this.x = arg0.x;
|
||||
this.y = arg0.y;
|
||||
this.z = arg0.z;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue