diff options
| author | Daniel She <shekwancheung0528@gmail.com> | 2019-05-07 18:31:05 +0800 |
|---|---|---|
| committer | Daniel She <shekwancheung0528@gmail.com> | 2019-05-07 18:31:05 +0800 |
| commit | 1cbb2799557d9c0a20364b64a317055ec857a878 (patch) | |
| tree | 23cc18b2e544c5fc609f511a4a18ff3112891262 /src/main/java/me/shedaniel/rei/api/RecipeHelper.java | |
| parent | 45a34a230d46b1d47cb8eb9eb60d6bf39124aaec (diff) | |
| parent | 5357ec90f80768b69b197161e877e3ef884650a4 (diff) | |
| download | RoughlyEnoughItems-1cbb2799557d9c0a20364b64a317055ec857a878.tar.gz RoughlyEnoughItems-1cbb2799557d9c0a20364b64a317055ec857a878.tar.bz2 RoughlyEnoughItems-1cbb2799557d9c0a20364b64a317055ec857a878.zip | |
Merge branch '1.14-dev' into 1.14
Diffstat (limited to 'src/main/java/me/shedaniel/rei/api/RecipeHelper.java')
| -rw-r--r-- | src/main/java/me/shedaniel/rei/api/RecipeHelper.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/java/me/shedaniel/rei/api/RecipeHelper.java b/src/main/java/me/shedaniel/rei/api/RecipeHelper.java index b7e3f2206..4b0fde018 100644 --- a/src/main/java/me/shedaniel/rei/api/RecipeHelper.java +++ b/src/main/java/me/shedaniel/rei/api/RecipeHelper.java @@ -2,6 +2,7 @@ package me.shedaniel.rei.api; import me.shedaniel.rei.RoughlyEnoughItemsCore; import net.minecraft.item.ItemStack; +import net.minecraft.recipe.Recipe; import net.minecraft.recipe.RecipeManager; import net.minecraft.util.Identifier; @@ -17,6 +18,8 @@ public interface RecipeHelper { int getRecipeCount(); + List<Recipe> getVanillaSortedRecipes(); + List<ItemStack> findCraftableByItems(List<ItemStack> inventoryItems); void registerCategory(RecipeCategory category); |
