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

12 lines
394 B
Java
Raw Normal View History

package de.ellpeck.actuallyadditions.api.misc;
public interface IDisableableItem {
2019-02-27 19:53:05 +01:00
/**
* 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.
*/
boolean isDisabled();
}