Package pneumaticCraft.common.inventory

Examples of pneumaticCraft.common.inventory.ContainerInventorySearcher


public class GuiInventorySearcher extends GuiContainer{
    private final InventoryBasic inventory = new InventoryBasic("tmp", true, 1);
    private final GuiScreen parentScreen;

    public GuiInventorySearcher(EntityPlayer par1EntityPlayer){
        super(new ContainerInventorySearcher(par1EntityPlayer.inventory));
        par1EntityPlayer.openContainer = inventorySlots;
        allowUserInput = true;
        ySize = 176;//TODO change
        parentScreen = FMLClientHandler.instance().getClient().currentScreen;
        ((ContainerInventorySearcher)inventorySlots).init(inventory);
View Full Code Here

TOP

Related Classes of pneumaticCraft.common.inventory.ContainerInventorySearcher

Copyright © 2018 www.massapicom. 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.