001/*
002 * Forge Mod Loader
003 * Copyright (c) 2012-2013 cpw.
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the GNU Lesser Public License v2.1
006 * which accompanies this distribution, and is available at
007 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
008 * 
009 * Contributors:
010 *     cpw - implementation
011 */
012
013package cpw.mods.fml.common.modloader;
014
015import net.minecraft.entity.player.EntityPlayer;
016import net.minecraft.inventory.IInventory;
017import net.minecraft.item.ItemStack;
018import cpw.mods.fml.common.ICraftingHandler;
019
020public class ModLoaderCraftingHelper implements ICraftingHandler
021{
022
023    private BaseModProxy mod;
024
025    public ModLoaderCraftingHelper(BaseModProxy mod)
026    {
027        this.mod = mod;
028    }
029
030    @Override
031    public void onCrafting(EntityPlayer player, ItemStack item, IInventory craftMatrix)
032    {
033        mod.takenFromCrafting(player, item, craftMatrix);
034    }
035
036    @Override
037    public void onSmelting(EntityPlayer player, ItemStack item)
038    {
039        mod.takenFromFurnace(player, item);
040    }
041
042}