mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-20 19:22:48 +00:00
26 lines
327 B
Java
26 lines
327 B
Java
package com.volmit.iris.object;
|
|
|
|
import com.volmit.iris.util.DontObfuscate;
|
|
|
|
public enum StructureTileCondition
|
|
{
|
|
@DontObfuscate
|
|
REQUIRED,
|
|
|
|
@DontObfuscate
|
|
AGNOSTIC,
|
|
|
|
@DontObfuscate
|
|
NEVER;
|
|
|
|
public boolean supported()
|
|
{
|
|
return !this.equals(NEVER);
|
|
}
|
|
|
|
public boolean required()
|
|
{
|
|
return this.equals(REQUIRED);
|
|
}
|
|
}
|