37 lines
790 B
Java
37 lines
790 B
Java
import net.runelite.mapping.Export;
|
|
import net.runelite.mapping.Implements;
|
|
import net.runelite.mapping.ObfuscatedName;
|
|
import net.runelite.mapping.ObfuscatedSignature;
|
|
|
|
@ObfuscatedName("ju")
|
|
@Implements("TriBool")
|
|
public class TriBool {
|
|
@ObfuscatedName("c")
|
|
@ObfuscatedSignature(
|
|
signature = "Lju;"
|
|
)
|
|
@Export("TriBool_unknown")
|
|
public static final TriBool TriBool_unknown;
|
|
@ObfuscatedName("t")
|
|
@ObfuscatedSignature(
|
|
signature = "Lju;"
|
|
)
|
|
@Export("TriBool_true")
|
|
public static final TriBool TriBool_true;
|
|
@ObfuscatedName("o")
|
|
@ObfuscatedSignature(
|
|
signature = "Lju;"
|
|
)
|
|
@Export("TriBool_false")
|
|
public static final TriBool TriBool_false;
|
|
|
|
static {
|
|
TriBool_unknown = new TriBool();
|
|
TriBool_true = new TriBool();
|
|
TriBool_false = new TriBool();
|
|
}
|
|
|
|
TriBool() {
|
|
}
|
|
}
|