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