aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/api/SpeedCraftFunctional.java
diff options
context:
space:
mode:
authorRaph Hennessy <raph.hennessy@gmail.com>2019-02-28 19:34:01 +1100
committerDaniel She <shekwancheung0528@gmail.com>2019-02-28 16:34:01 +0800
commit04f96f866d09002808c2bf6ab1f252f781751617 (patch)
treec9147b09d85660a9ea812310dbbfc25e3f2dc0cb /src/main/java/me/shedaniel/rei/api/SpeedCraftFunctional.java
parent60fb69c2763386cf38aea12b1fa817d51125b0db (diff)
downloadRoughlyEnoughItems-04f96f866d09002808c2bf6ab1f252f781751617.tar.gz
RoughlyEnoughItems-04f96f866d09002808c2bf6ab1f252f781751617.tar.bz2
RoughlyEnoughItems-04f96f866d09002808c2bf6ab1f252f781751617.zip
Updated to 19w09a (#43)
* Update MixinContainerScreen.java * 19w09a update
Diffstat (limited to 'src/main/java/me/shedaniel/rei/api/SpeedCraftFunctional.java')
-rw-r--r--src/main/java/me/shedaniel/rei/api/SpeedCraftFunctional.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/java/me/shedaniel/rei/api/SpeedCraftFunctional.java b/src/main/java/me/shedaniel/rei/api/SpeedCraftFunctional.java
index bf89e3c2e..cec5a9f90 100644
--- a/src/main/java/me/shedaniel/rei/api/SpeedCraftFunctional.java
+++ b/src/main/java/me/shedaniel/rei/api/SpeedCraftFunctional.java
@@ -4,10 +4,10 @@ import net.minecraft.client.gui.Screen;
public interface SpeedCraftFunctional<T extends IRecipeDisplay> {
- public Class[] getFunctioningFor();
-
- public boolean performAutoCraft(Screen screen, T recipe);
-
- public boolean acceptRecipe(Screen screen, T recipe);
-
+ Class[] getFunctioningFor();
+
+ boolean performAutoCraft(Screen screen, T recipe);
+
+ boolean acceptRecipe(Screen screen, T recipe);
+
}