Mekanism-tilera-Edition/common/ic2/api/item/IBoxable.java

15 lines
339 B
Java
Raw Normal View History

2013-05-07 22:12:07 +02:00
package ic2.api.item;
import net.minecraft.item.ItemStack;
2013-05-07 22:12:07 +02:00
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);
}