15 lines
338 B
Java
15 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);
|
||
|
}
|