aboutsummaryrefslogtreecommitdiff
path: root/default-plugin/src/main/java
diff options
context:
space:
mode:
authorshedaniel <daniel@shedaniel.me>2021-05-17 21:41:37 +0800
committershedaniel <daniel@shedaniel.me>2021-05-17 21:41:37 +0800
commit943c7aab9fe4dac5801d5dfa9af2611331eccd78 (patch)
tree5956ccecec82a594830fcb6a8855b7a633595859 /default-plugin/src/main/java
parent0cd2336ababe5d6c78a64943adde5b54cb3e72b6 (diff)
parent745f78a4aa7d23fe03e7420eb3fe06b8c418db35 (diff)
downloadRoughlyEnoughItems-943c7aab9fe4dac5801d5dfa9af2611331eccd78.tar.gz
RoughlyEnoughItems-943c7aab9fe4dac5801d5dfa9af2611331eccd78.tar.bz2
RoughlyEnoughItems-943c7aab9fe4dac5801d5dfa9af2611331eccd78.zip
Merge remote-tracking branch 'origin/6.x' into 6.x-1.17
Diffstat (limited to 'default-plugin/src/main/java')
-rw-r--r--default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/anvil/AnvilRecipe.java40
1 files changed, 40 insertions, 0 deletions
diff --git a/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/anvil/AnvilRecipe.java b/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/anvil/AnvilRecipe.java
new file mode 100644
index 000000000..550199a62
--- /dev/null
+++ b/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/anvil/AnvilRecipe.java
@@ -0,0 +1,40 @@
+/*
+ * This file is licensed under the MIT License, part of Roughly Enough Items.
+ * Copyright (c) 2018, 2019, 2020, 2021 shedaniel
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+package me.shedaniel.rei.plugin.common.displays.anvil;
+
+import net.minecraft.world.item.ItemStack;
+
+import java.util.List;
+
+public class AnvilRecipe {
+ private final List<ItemStack> leftInput;
+ private final List<ItemStack> rightInputs;
+ private final List<ItemStack> outputs;
+
+ public AnvilRecipe(List<ItemStack> leftInput, List<ItemStack> rightInputs, List<ItemStack> outputs) {
+ this.leftInput = leftInput;
+ this.rightInputs = rightInputs;
+ this.outputs = outputs;
+ }
+}