13 lines
302 B
Java
13 lines
302 B
Java
package appeng.tile.inventory;
|
|
|
|
import net.minecraft.inventory.IInventory;
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
public interface IAEAppEngInventory
|
|
{
|
|
|
|
void saveChanges();
|
|
|
|
void onChangeInventory(IInventory inv, int slot, InvOperation mc, ItemStack removedStack, ItemStack newStack);
|
|
|
|
}
|