diff options
| author | Raph Hennessy <raph.hennessy@gmail.com> | 2019-02-28 19:34:01 +1100 |
|---|---|---|
| committer | Daniel She <shekwancheung0528@gmail.com> | 2019-02-28 16:34:01 +0800 |
| commit | 04f96f866d09002808c2bf6ab1f252f781751617 (patch) | |
| tree | c9147b09d85660a9ea812310dbbfc25e3f2dc0cb /src/main/java/me/shedaniel/rei/api/SpeedCraftFunctional.java | |
| parent | 60fb69c2763386cf38aea12b1fa817d51125b0db (diff) | |
| download | RoughlyEnoughItems-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.java | 12 |
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); + } |
