37 lines
825 B
Java
37 lines
825 B
Java
import net.runelite.mapping.Export;
|
|
import net.runelite.mapping.Implements;
|
|
import net.runelite.mapping.ObfuscatedName;
|
|
import net.runelite.mapping.ObfuscatedSignature;
|
|
|
|
@ObfuscatedName("mc")
|
|
@Implements("TriBool")
|
|
public class TriBool {
|
|
@ObfuscatedName("c")
|
|
@ObfuscatedSignature(
|
|
descriptor = "Lmc;"
|
|
)
|
|
@Export("TriBool_unknown")
|
|
public static final TriBool TriBool_unknown;
|
|
@ObfuscatedName("l")
|
|
@ObfuscatedSignature(
|
|
descriptor = "Lmc;"
|
|
)
|
|
@Export("TriBool_true")
|
|
public static final TriBool TriBool_true;
|
|
@ObfuscatedName("s")
|
|
@ObfuscatedSignature(
|
|
descriptor = "Lmc;"
|
|
)
|
|
@Export("TriBool_false")
|
|
public static final TriBool TriBool_false;
|
|
|
|
static {
|
|
TriBool_unknown = new TriBool(); // L: 4
|
|
TriBool_true = new TriBool(); // L: 5
|
|
TriBool_false = new TriBool(); // L: 6
|
|
}
|
|
|
|
TriBool() {
|
|
} // L: 8
|
|
}
|