From 4710c557f449703362665a520bf68b85b2a7cdc1 Mon Sep 17 00:00:00 2001 From: Unknown Date: Sat, 8 Jun 2019 20:30:53 +0800 Subject: We are going to break lots of mods --- .../me/shedaniel/rei/api/SpeedCraftFunctional.java | 37 ---------------------- 1 file changed, 37 deletions(-) delete mode 100644 src/main/java/me/shedaniel/rei/api/SpeedCraftFunctional.java (limited to 'src/main/java/me/shedaniel/rei/api/SpeedCraftFunctional.java') 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 { - - /** - * 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); - -} -- cgit