aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/api/SpeedCraftFunctional.java
diff options
context:
space:
mode:
authorUnknown <shekwancheung0528@gmail.com>2019-01-30 21:12:10 +0800
committerUnknown <shekwancheung0528@gmail.com>2019-01-30 21:12:10 +0800
commit30493491181cec7a32c2bce360e623504fb896d8 (patch)
treecd93b7767a119e9ce2ac4235cd837854c362367b /src/main/java/me/shedaniel/rei/api/SpeedCraftFunctional.java
parent973868ece23dd75080cfe6ef7b48f8284070ce4e (diff)
downloadRoughlyEnoughItems-30493491181cec7a32c2bce360e623504fb896d8.tar.gz
RoughlyEnoughItems-30493491181cec7a32c2bce360e623504fb896d8.tar.bz2
RoughlyEnoughItems-30493491181cec7a32c2bce360e623504fb896d8.zip
Close #17
Diffstat (limited to 'src/main/java/me/shedaniel/rei/api/SpeedCraftFunctional.java')
-rw-r--r--src/main/java/me/shedaniel/rei/api/SpeedCraftFunctional.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/me/shedaniel/rei/api/SpeedCraftFunctional.java b/src/main/java/me/shedaniel/rei/api/SpeedCraftFunctional.java
index e2ed4b83d..bf89e3c2e 100644
--- a/src/main/java/me/shedaniel/rei/api/SpeedCraftFunctional.java
+++ b/src/main/java/me/shedaniel/rei/api/SpeedCraftFunctional.java
@@ -1,13 +1,13 @@
package me.shedaniel.rei.api;
-import net.minecraft.client.gui.Gui;
+import net.minecraft.client.gui.Screen;
public interface SpeedCraftFunctional<T extends IRecipeDisplay> {
public Class[] getFunctioningFor();
- public boolean performAutoCraft(Gui gui, T recipe);
+ public boolean performAutoCraft(Screen screen, T recipe);
- public boolean acceptRecipe(Gui gui, T recipe);
+ public boolean acceptRecipe(Screen screen, T recipe);
}