36 lines
829 B
Java
36 lines
829 B
Java
import net.runelite.mapping.Export;
|
|
import net.runelite.mapping.Implements;
|
|
import net.runelite.mapping.ObfuscatedName;
|
|
import net.runelite.mapping.ObfuscatedSignature;
|
|
|
|
@ObfuscatedName("fa")
|
|
@Implements("DualNode")
|
|
public class DualNode extends Node {
|
|
@ObfuscatedName("cj")
|
|
@Export("keyDual")
|
|
public long keyDual;
|
|
@ObfuscatedName("cm")
|
|
@ObfuscatedSignature(
|
|
signature = "Lfa;"
|
|
)
|
|
@Export("previousDual")
|
|
public DualNode previousDual;
|
|
@ObfuscatedName("cb")
|
|
@ObfuscatedSignature(
|
|
signature = "Lfa;"
|
|
)
|
|
@Export("nextDual")
|
|
public DualNode nextDual;
|
|
|
|
@ObfuscatedName("cu")
|
|
@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;
|
|
}
|
|
}
|
|
}
|