View drying rack recipe
public class DryingRackRecipe implements IDryingRackRecipe { | |
private final ResourceLocation id; | |
private final ItemStack output; | |
private Ingredient input; | |
public DryingRackRecipe(ResourceLocation id, ItemStack output, Ingredient input) { | |
this.id = id; | |
this.output = output; | |
this.input = input; |