resonant-induction/APIs/ic2/api/item/IBoxable.java
2013-08-26 13:36:24 -04:00

14 lines
338 B
Java

package ic2.api.item;
import net.minecraft.item.ItemStack;
public interface IBoxable
{
/**
* Determine whether an item can be stored in a toolbox or not.
*
* @param itemstack item to be stored
* @return Whether to store the item in the toolbox or not
*/
public abstract boolean canBeStoredInToolbox(ItemStack itemstack);
}