ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/api/misc/IDisableableItem.java

13 lines
385 B
Java
Raw Normal View History

package de.ellpeck.actuallyadditions.api.misc;
public interface IDisableableItem {
/**
* Represents an item that can be disabled in the configuration of the mod.
* If this returns true, assume the item is not registered with the game, but may still be instantiated.
* @return If the item has not been registered with the Forge Registry.
*/
public boolean isDisabled();
}