Improved NEI Integration and Pattern Terminal Support

This commit is contained in:
AlgorithmX2
2014-07-06 01:52:29 -05:00
parent e658c40381
commit 6ce5a8f4c5
10 changed files with 113 additions and 26 deletions
+31
View File
@@ -0,0 +1,31 @@
package appeng.helpers;
import net.minecraft.inventory.IInventory;
import appeng.api.networking.IGridNode;
import appeng.api.networking.security.BaseActionSource;
public interface IContainerCraftingPacket
{
/**
* @return gain access to network infrastructure.
*/
IGridNode getNetworkNode();
/**
* @param string
* @return the inventory of the part/tile by name.
*/
IInventory getInventoryByName(String string);
/**
* @return who are we?
*/
BaseActionSource getSource();
/**
* @return consume items?
*/
boolean useRealItems();
}