| package mods.railcraft.api.crafting; | |
| import java.util.List; | |
| import net.minecraft.item.ItemStack; | |
| import net.minecraftforge.fluids.FluidStack; | |
| /** | |
| * | |
| * @author CovertJaguar <http://www.railcraft.info> | |
| */ | |
| public interface ICokeOvenCraftingManager { | |
| void addRecipe(ItemStack input, boolean matchDamage, boolean matchNBT, ItemStack output, FluidStack liquidOutput, int cookTime); | |
| ICokeOvenRecipe getRecipe(ItemStack stack); | |
| List<? extends ICokeOvenRecipe> getRecipes(); | |
| } |