package me.shedaniel.api; import net.minecraft.item.ItemStack; import java.util.List; /** * Created by James on 7/27/2018. */ public interface IRecipe { public String getId(); public List getOutput(); public List> getInput(); public List> getRecipeRequiredInput(); }