25 lines
726 B
Java
25 lines
726 B
Java
package com.hypixel.hytale.procedurallib.condition;
|
|
|
|
import javax.annotation.Nonnull;
|
|
|
|
public class ConstantBlockFluidCondition implements IBlockFluidCondition {
|
|
public static final ConstantBlockFluidCondition DEFAULT_TRUE = new ConstantBlockFluidCondition(true);
|
|
public static final ConstantBlockFluidCondition DEFAULT_FALSE = new ConstantBlockFluidCondition(false);
|
|
protected final boolean result;
|
|
|
|
public ConstantBlockFluidCondition(boolean result) {
|
|
this.result = result;
|
|
}
|
|
|
|
@Override
|
|
public boolean eval(int block, int fluid) {
|
|
return this.result;
|
|
}
|
|
|
|
@Nonnull
|
|
@Override
|
|
public String toString() {
|
|
return "ConstantBlockFluidCondition{result=" + this.result + "}";
|
|
}
|
|
}
|