From 98c2c0f1af8b264cfce5c005f4694318cce001b2 Mon Sep 17 00:00:00 2001 From: Unknown Date: Thu, 6 Jun 2019 18:36:51 +0800 Subject: alterative solution to the working stations --- src/main/java/me/shedaniel/rei/api/RecipeHelper.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src/main/java/me/shedaniel/rei/api/RecipeHelper.java') diff --git a/src/main/java/me/shedaniel/rei/api/RecipeHelper.java b/src/main/java/me/shedaniel/rei/api/RecipeHelper.java index 2dbf3717a..cb5e3684f 100644 --- a/src/main/java/me/shedaniel/rei/api/RecipeHelper.java +++ b/src/main/java/me/shedaniel/rei/api/RecipeHelper.java @@ -52,6 +52,14 @@ public interface RecipeHelper { */ void registerCategory(RecipeCategory category); + /** + * Registers the working stations of a category + * + * @param category the category + * @param workingStations the working stations + */ + void registerWorkingStations(Identifier category, List... workingStations); + /** * Registers the working stations of a category * @@ -60,7 +68,7 @@ public interface RecipeHelper { */ void registerWorkingStations(Identifier category, ItemStack... workingStations); - List getWorkingStations(Identifier category); + List> getWorkingStations(Identifier category); /** * Registers a recipe display -- cgit