pick 97420a31d The big reformat of 2020

This commit is contained in:
yueh
2020-06-16 21:41:28 +02:00
parent 5304b3febe
commit 5225ea426b
2252 changed files with 95466 additions and 118582 deletions
@@ -18,41 +18,38 @@
package appeng.helpers;
import net.minecraft.item.ItemStack;
import net.minecraftforge.items.IItemHandler;
import appeng.api.networking.IGridNode;
import appeng.api.networking.security.IActionSource;
public interface IContainerCraftingPacket {
public interface IContainerCraftingPacket
{
/**
* @return gain access to network infrastructure.
*/
IGridNode getNetworkNode();
/**
* @return gain access to network infrastructure.
*/
IGridNode getNetworkNode();
/**
* @param string name of inventory
*
* @return the inventory of the part/tile by name.
*/
IItemHandler getInventoryByName(String string);
/**
* @param string name of inventory
*
* @return the inventory of the part/tile by name.
*/
IItemHandler getInventoryByName( String string );
/**
* @return who are we?
*/
IActionSource getActionSource();
/**
* @return who are we?
*/
IActionSource getActionSource();
/**
* @return consume items?
*/
boolean useRealItems();
/**
* @return consume items?
*/
boolean useRealItems();
/**
* @return array of view cells
*/
ItemStack[] getViewCells();
/**
* @return array of view cells
*/
ItemStack[] getViewCells();
}