Package codechicken.nei

Source Code of codechicken.nei.InventoryCraftingDummy

package codechicken.nei;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.Container;
import net.minecraft.inventory.InventoryCrafting;

public class InventoryCraftingDummy extends InventoryCrafting
{
    public InventoryCraftingDummy()
    {
        super(new Container()
        {
            @Override
            public boolean canInteractWith(EntityPlayer entityplayer)
            {
                return true;
            }
        }, 3, 3);
    }
}
TOP

Related Classes of codechicken.nei.InventoryCraftingDummy

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.