Applied-Energistics-2-tiler.../core/sync/GuiHostType.java

16 lines
195 B
Java

package appeng.core.sync;
public enum GuiHostType
{
ITEM_OR_WORLD, ITEM, WORLD;
public boolean isItem()
{
return this != WORLD;
}
public boolean isTile()
{
return this != ITEM;
}
}