14 lines
334 B
Java
14 lines
334 B
Java
|
package dark.lib.interfaces;
|
||
|
|
||
|
import net.minecraft.item.ItemStack;
|
||
|
import net.minecraftforge.common.ForgeDirection;
|
||
|
|
||
|
public interface IExternalInv
|
||
|
{
|
||
|
public IInvBox getInventory();
|
||
|
|
||
|
public boolean canStore(ItemStack stack, int slot, ForgeDirection side);
|
||
|
|
||
|
public boolean canRemove(ItemStack stack, int slot, ForgeDirection side);
|
||
|
}
|