blob: 3ba69b43269bf0a2f4c6d45fa48de3fb6b686f8b [file] [log] [blame] [raw]
package appeng.api.me.tiles;
import java.util.List;
import net.minecraft.item.ItemStack;
public class InterfaceCraftingPattern {
/**
* list of all the inputs.
*/
public List<ItemStack> Inputs;
/**
* the output of the pattern.
*/
public ItemStack Output;
}