10 lines
153 B
Java
10 lines
153 B
Java
package appeng.util.inv;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
public interface IInventoryDestination
|
|
{
|
|
|
|
public boolean canInsert(ItemStack stack);
|
|
|
|
}
|