Package pneumaticCraft.client.gui

Examples of pneumaticCraft.client.gui.GuiSearcher


    }

    @Override
    public void actionPerformed(GuiButton button){
        if(button.id == 10) {
            searchGui = new GuiSearcher(player);
            if(player.getCurrentArmor(3) != null) {
                searchGui.setSearchStack(ItemPneumaticArmor.getSearchedStack(player.getCurrentArmor(3)));
            }
            FMLClientHandler.instance().showGuiScreen(searchGui);
        } else {
View Full Code Here


    }

    @Override
    public void actionPerformed(GuiButton button){
        if(button.id == 0) {
            searchGui = new GuiSearcher(FMLClientHandler.instance().getClient().thePlayer);
            searchGui.setSearchStack(widg.filter);
            FMLClientHandler.instance().showGuiScreen(searchGui);
        } else if(button.id == 1) {
            invSearchGui = new GuiInventorySearcher(FMLClientHandler.instance().getClient().thePlayer);
            invSearchGui.setSearchStack(widg.filter);
View Full Code Here

TOP

Related Classes of pneumaticCraft.client.gui.GuiSearcher

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.