Inventory Util Upgrades.

This commit is contained in:
AlgorithmX2
2014-01-01 03:04:54 -06:00
parent d7337aeb6b
commit 978745238f
3 changed files with 57 additions and 2 deletions
@@ -10,6 +10,7 @@ import appeng.api.AEApi;
import appeng.api.storage.data.IAEItemStack;
import appeng.util.Platform;
import appeng.util.item.AEItemStack;
import appeng.util.iterators.AEInvIterator;
import appeng.util.iterators.InvIterator;
public class AppEngInternalAEInventory implements IInventory, Iterable<ItemStack>
@@ -237,4 +238,9 @@ public class AppEngInternalAEInventory implements IInventory, Iterable<ItemStack
{
return new InvIterator( this );
}
public Iterator<IAEItemStack> aeiterator()
{
return new AEInvIterator( this );
}
}