ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/api/misc/IDisableableItem.java
2020-09-07 15:24:04 +01:00

12 lines
394 B
Java

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.
*/
boolean isDisabled();
}