11 lines
158 B
Java
11 lines
158 B
Java
|
package appeng.util.inv;
|
||
|
|
||
|
import net.minecraft.item.ItemStack;
|
||
|
|
||
|
public interface IInventoryWrapper
|
||
|
{
|
||
|
|
||
|
boolean canRemoveItemFromSlot(int x, ItemStack is);
|
||
|
|
||
|
}
|