resonant-induction/APIs/ic2/api/item/IBoxable.java
DarkGuardsman 95c6fa1b85 API update
2013-10-12 06:12:59 -04:00

14 lines
339 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);
}