Merges Injector
Welcome to the new world boys.
This commit is contained in:
15
rs-client/src/main/java/ByteArrayNode.java
Normal file
15
rs-client/src/main/java/ByteArrayNode.java
Normal file
@@ -0,0 +1,15 @@
|
||||
import net.runelite.mapping.Export;
|
||||
import net.runelite.mapping.Implements;
|
||||
import net.runelite.mapping.ObfuscatedName;
|
||||
|
||||
@ObfuscatedName("gp")
|
||||
@Implements("ByteArrayNode")
|
||||
public class ByteArrayNode extends Node {
|
||||
@ObfuscatedName("m")
|
||||
@Export("byteArray")
|
||||
public byte[] byteArray;
|
||||
|
||||
public ByteArrayNode(byte[] var1) {
|
||||
this.byteArray = var1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user