aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/api/RecipeDisplay.java
diff options
context:
space:
mode:
authorshedaniel <daniel@shedaniel.me>2019-12-24 11:31:40 +0800
committershedaniel <daniel@shedaniel.me>2019-12-24 11:31:40 +0800
commit08d80d588a36598114087a79917e36e9d2cc97c3 (patch)
tree95cde698bbf1eca2f83143d39fd206cf2dc803f2 /src/main/java/me/shedaniel/rei/api/RecipeDisplay.java
parent7d438f554c4173880a407a6bb8fc80b8a4723845 (diff)
downloadRoughlyEnoughItems-08d80d588a36598114087a79917e36e9d2cc97c3.tar.gz
RoughlyEnoughItems-08d80d588a36598114087a79917e36e9d2cc97c3.tar.bz2
RoughlyEnoughItems-08d80d588a36598114087a79917e36e9d2cc97c3.zip
Finishing workstation usage and close #220
Diffstat (limited to 'src/main/java/me/shedaniel/rei/api/RecipeDisplay.java')
-rw-r--r--src/main/java/me/shedaniel/rei/api/RecipeDisplay.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/java/me/shedaniel/rei/api/RecipeDisplay.java b/src/main/java/me/shedaniel/rei/api/RecipeDisplay.java
index 328d28973..139132a73 100644
--- a/src/main/java/me/shedaniel/rei/api/RecipeDisplay.java
+++ b/src/main/java/me/shedaniel/rei/api/RecipeDisplay.java
@@ -12,17 +12,17 @@ import java.util.List;
import java.util.Optional;
public interface RecipeDisplay {
-
+
/**
* @return a list of inputs
*/
List<List<EntryStack>> getInputEntries();
-
+
/**
* @return a list of outputs
*/
List<EntryStack> getOutputEntries();
-
+
/**
* Gets the required items used in craftable filters
*
@@ -31,14 +31,14 @@ public interface RecipeDisplay {
default List<List<EntryStack>> getRequiredEntries() {
return Collections.emptyList();
}
-
+
/**
* Gets the recipe display category identifier
*
* @return the identifier of the category
*/
Identifier getRecipeCategory();
-
+
/**
* Gets the recipe location from datapack
*
@@ -47,5 +47,5 @@ public interface RecipeDisplay {
default Optional<Identifier> getRecipeLocation() {
return Optional.empty();
}
-
+
}