blob: 837354c9304db32aa454c7f0224f48382ad24e8a [file] [log] [blame] [raw]
package mods.railcraft.api.crafting;
import java.util.List;
import net.minecraft.item.ItemStack;
/**
*
* @author CovertJaguar <http://www.railcraft.info>
*/
public interface IRockCrusherCraftingManager {
IRockCrusherRecipe createNewRecipe(ItemStack input, boolean matchDamage, boolean matchNBT);
IRockCrusherRecipe getRecipe(ItemStack input);
List<? extends IRockCrusherRecipe> getRecipes();
}