ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/api/misc/IDisableableItem.java
Shadows_of_Fire f2b24c3318 Closes #872
There dad u got ur thingy
also who put these null itemstacks here bad
2017-08-01 22:20:47 -04:00

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