mffs/src/main/java/mffs/recipe/IRecipeAdapter.java

15 lines
316 B
Java
Raw Normal View History

2022-10-28 16:20:12 +02:00
package mffs.recipe;
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.IRecipe;
public interface IRecipeAdapter {
2023-01-08 16:58:21 +01:00
public void setOutput(ItemStack item);
2022-10-28 16:20:12 +02:00
2023-01-08 16:58:21 +01:00
public void setPattern(String... pattern);
2022-10-28 16:20:12 +02:00
2023-01-08 16:58:21 +01:00
public void addIngredient(Object... ingredients);
2022-10-28 16:20:12 +02:00
2023-01-08 16:58:21 +01:00
public IRecipe create();
2022-10-28 16:20:12 +02:00
}