36 lines
864 B
Java
36 lines
864 B
Java
import net.runelite.mapping.Export;
|
|
import net.runelite.mapping.Implements;
|
|
import net.runelite.mapping.ObfuscatedName;
|
|
import net.runelite.mapping.ObfuscatedSignature;
|
|
|
|
@ObfuscatedName("fw")
|
|
@Implements("DualNode")
|
|
public class DualNode extends Node {
|
|
@ObfuscatedName("cu")
|
|
@Export("keyDual")
|
|
public long keyDual;
|
|
@ObfuscatedName("ce")
|
|
@ObfuscatedSignature(
|
|
signature = "Lfw;"
|
|
)
|
|
@Export("previousDual")
|
|
public DualNode previousDual;
|
|
@ObfuscatedName("cc")
|
|
@ObfuscatedSignature(
|
|
signature = "Lfw;"
|
|
)
|
|
@Export("nextDual")
|
|
public DualNode nextDual;
|
|
|
|
@ObfuscatedName("ce")
|
|
@Export("removeDual")
|
|
public void removeDual() {
|
|
if (this.nextDual != null) {
|
|
this.nextDual.previousDual = this.previousDual;
|
|
this.previousDual.nextDual = this.nextDual;
|
|
this.previousDual = null;
|
|
this.nextDual = null;
|
|
}
|
|
}
|
|
}
|