20 lines
354 B
Java
20 lines
354 B
Java
package com.hypixel.hytale.builtin.hytalegenerator.props;
|
|
|
|
import javax.annotation.Nonnull;
|
|
|
|
public interface ScanResult {
|
|
ScanResult NONE = new ScanResult() {
|
|
@Override
|
|
public boolean isNegative() {
|
|
return true;
|
|
}
|
|
};
|
|
|
|
boolean isNegative();
|
|
|
|
@Nonnull
|
|
static ScanResult noScanResult() {
|
|
return NONE;
|
|
}
|
|
}
|