diff options
| author | Unknown <shekwancheung0528@gmail.com> | 2019-06-06 18:36:51 +0800 |
|---|---|---|
| committer | Unknown <shekwancheung0528@gmail.com> | 2019-06-06 18:36:51 +0800 |
| commit | 98c2c0f1af8b264cfce5c005f4694318cce001b2 (patch) | |
| tree | 5a7aaa389ddbf86ae2e4fed06fa40e8d427c8bae /src/main/java/me/shedaniel/rei/api/RecipeHelper.java | |
| parent | 36609262e4014e976523130bf26879eac2e90e19 (diff) | |
| download | RoughlyEnoughItems-98c2c0f1af8b264cfce5c005f4694318cce001b2.tar.gz RoughlyEnoughItems-98c2c0f1af8b264cfce5c005f4694318cce001b2.tar.bz2 RoughlyEnoughItems-98c2c0f1af8b264cfce5c005f4694318cce001b2.zip | |
alterative solution to the working stations
Diffstat (limited to 'src/main/java/me/shedaniel/rei/api/RecipeHelper.java')
| -rw-r--r-- | src/main/java/me/shedaniel/rei/api/RecipeHelper.java | 10 |
1 files changed, 9 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 2dbf3717a..cb5e3684f 100644 --- a/src/main/java/me/shedaniel/rei/api/RecipeHelper.java +++ b/src/main/java/me/shedaniel/rei/api/RecipeHelper.java @@ -58,9 +58,17 @@ public interface RecipeHelper { * @param category the category * @param workingStations the working stations */ + void registerWorkingStations(Identifier category, List<ItemStack>... workingStations); + + /** + * Registers the working stations of a category + * + * @param category the category + * @param workingStations the working stations + */ void registerWorkingStations(Identifier category, ItemStack... workingStations); - List<ItemStack> getWorkingStations(Identifier category); + List<List<ItemStack>> getWorkingStations(Identifier category); /** * Registers a recipe display |
