rs-client/apis

This commit is contained in:
Lucwousin
2019-07-18 15:21:46 +02:00
parent aa5098aff5
commit 25ce6c2ee9
346 changed files with 78952 additions and 84408 deletions

View File

@@ -3,40 +3,39 @@ import net.runelite.mapping.Implements;
import net.runelite.mapping.ObfuscatedName;
import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("gw")
@ObfuscatedName("fw")
@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("cg")
@Export("key")
public long key;
@ObfuscatedName("cv")
@ObfuscatedSignature(
signature = "Lfw;"
)
@Export("previous")
public Node previous;
@ObfuscatedName("ce")
@ObfuscatedSignature(
signature = "Lfw;"
)
@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("fz")
@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;
}
@ObfuscatedName("fn")
@Export("hasNext")
public boolean hasNext() {
return this.next != null;
}
}