diff options
| author | Unknown <shekwancheung0528@gmail.com> | 2019-06-08 20:30:53 +0800 |
|---|---|---|
| committer | Unknown <shekwancheung0528@gmail.com> | 2019-06-08 20:30:53 +0800 |
| commit | 4710c557f449703362665a520bf68b85b2a7cdc1 (patch) | |
| tree | ed9555c626be11c7bc0d230d2b905856269bd916 /src/main/java/me/shedaniel/rei/api/SpeedCraftFunctional.java | |
| parent | 28adfa726bcdb27eea4ffa39962c881d5c3d929b (diff) | |
| download | RoughlyEnoughItems-4710c557f449703362665a520bf68b85b2a7cdc1.tar.gz RoughlyEnoughItems-4710c557f449703362665a520bf68b85b2a7cdc1.tar.bz2 RoughlyEnoughItems-4710c557f449703362665a520bf68b85b2a7cdc1.zip | |
We are going to break lots of mods
Diffstat (limited to 'src/main/java/me/shedaniel/rei/api/SpeedCraftFunctional.java')
| -rw-r--r-- | src/main/java/me/shedaniel/rei/api/SpeedCraftFunctional.java | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/src/main/java/me/shedaniel/rei/api/SpeedCraftFunctional.java b/src/main/java/me/shedaniel/rei/api/SpeedCraftFunctional.java deleted file mode 100644 index 32f67438d..000000000 --- a/src/main/java/me/shedaniel/rei/api/SpeedCraftFunctional.java +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Roughly Enough Items by Danielshe. - * Licensed under the MIT License. - */ - -package me.shedaniel.rei.api; - -import net.minecraft.client.gui.screen.Screen; - -public interface SpeedCraftFunctional<T extends RecipeDisplay> { - - /** - * Gets the classes that it is functioning for - * - * @return the array of classes - */ - Class[] getFunctioningFor(); - - /** - * Performs the auto crafting - * - * @param screen the current screen - * @param recipe the current recipe - * @return whether it worked - */ - boolean performAutoCraft(Screen screen, T recipe); - - /** - * Gets if this functional accepts the auto crafting - * - * @param screen the current screen - * @param recipe the current recipe - * @return whether it is accepted - */ - boolean acceptRecipe(Screen screen, T recipe); - -} |
