Code/net/minecraft/util/TriState.java

15 lines
284 B
Java
Raw Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.util;
public enum TriState {
TRUE,
FALSE,
DEFAULT;
public boolean toBoolean(boolean p_361597_) {
return switch (this) {
case TRUE -> true;
case FALSE -> false;
default -> p_361597_;
};
}
}