aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/api/RecipeHelper.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/me/shedaniel/rei/api/RecipeHelper.java')
-rw-r--r--src/main/java/me/shedaniel/rei/api/RecipeHelper.java12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/main/java/me/shedaniel/rei/api/RecipeHelper.java b/src/main/java/me/shedaniel/rei/api/RecipeHelper.java
index 4e8a07f21..d502100c1 100644
--- a/src/main/java/me/shedaniel/rei/api/RecipeHelper.java
+++ b/src/main/java/me/shedaniel/rei/api/RecipeHelper.java
@@ -75,11 +75,21 @@ public interface RecipeHelper {
List<List<EntryStack>> getWorkingStations(Identifier category);
/**
- * Registers a recipe display
+ * Registers a recipe display.
+ *
+ * @param display the recipe display
+ */
+ void registerDisplay(RecipeDisplay display);
+
+ /**
+ * Registers a recipe display.
*
* @param categoryIdentifier the category to display in
* @param display the recipe display
*/
+ @ApiStatus.Internal
+ @ApiStatus.ScheduledForRemoval
+ @Deprecated
void registerDisplay(Identifier categoryIdentifier, RecipeDisplay display);
/**