Port Injector to main layout
Adds deobfuscator Adds injected-client Adds injector-plugin Adds runescape-client Replaces RL's apis Small bug with sprites atm, will be resolved soon. tired af. Builds, probably
This commit is contained in:
41
runescape-client/src/main/java/Node.java
Normal file
41
runescape-client/src/main/java/Node.java
Normal file
@@ -0,0 +1,41 @@
|
||||
import net.runelite.mapping.Export;
|
||||
import net.runelite.mapping.Implements;
|
||||
import net.runelite.mapping.ObfuscatedName;
|
||||
import net.runelite.mapping.ObfuscatedSignature;
|
||||
|
||||
@ObfuscatedName("gw")
|
||||
@Implements("Node")
|
||||
public class Node {
|
||||
@ObfuscatedName("cl")
|
||||
@Export("key")
|
||||
public long key;
|
||||
@ObfuscatedName("ct")
|
||||
@ObfuscatedSignature(
|
||||
signature = "Lgw;"
|
||||
)
|
||||
@Export("previous")
|
||||
public Node previous;
|
||||
@ObfuscatedName("cz")
|
||||
@ObfuscatedSignature(
|
||||
signature = "Lgw;"
|
||||
)
|
||||
@Export("next")
|
||||
public Node next;
|
||||
|
||||
@ObfuscatedName("es")
|
||||
@Export("remove")
|
||||
public void remove() {
|
||||
if(this.next != null) {
|
||||
this.next.previous = this.previous;
|
||||
this.previous.next = this.next;
|
||||
this.previous = null;
|
||||
this.next = null;
|
||||
}
|
||||
}
|
||||
|
||||
@ObfuscatedName("eg")
|
||||
@Export("hasNext")
|
||||
public boolean hasNext() {
|
||||
return this.next != null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user