2013-12-27 23:59:59 +01:00
|
|
|
package appeng.tile.inventory;
|
|
|
|
|
|
|
|
import net.minecraft.inventory.IInventory;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
|
|
|
public interface IAEAppEngInventory
|
|
|
|
{
|
|
|
|
|
2014-01-31 01:50:11 +01:00
|
|
|
void saveChanges();
|
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
void onChangeInventory(IInventory inv, int slot, InvOperation mc, ItemStack removedStack, ItemStack newStack);
|
|
|
|
|
|
|
|
}
|