blob: 30e754c400f5de6bf77d344cdf4a80deaa7e14ea [file] [log] [blame] [raw]
package mods.railcraft.api.crafting;
import java.util.List;
import net.minecraft.item.crafting.IRecipe;
import net.minecraft.inventory.InventoryCrafting;
import net.minecraft.item.ItemStack;
import net.minecraft.world.World;
/**
*
* @author CovertJaguar <http://www.ModTMechworks.info>
*/
public interface IRollingMachineCraftingManager
{
void addRecipe(ItemStack output, Object... components);
void addShapelessRecipe(ItemStack output, Object... compenents);
ItemStack findMatchingRecipe(InventoryCrafting inventorycrafting, World world);
List<IRecipe> getRecipeList();
}