Files
Applied-Energistics-2/tile/inventory/IAEAppEngInventory.java
T
2013-12-27 16:59:59 -06:00

14 lines
317 B
Java

package appeng.tile.inventory;
import net.minecraft.inventory.IInventory;
import net.minecraft.item.ItemStack;
public interface IAEAppEngInventory
{
IInventory getInternalInventory();
void onChangeInventory(IInventory inv, int slot, InvOperation mc, ItemStack removedStack, ItemStack newStack);
}