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