Package pneumaticCraft.common.inventory

Examples of pneumaticCraft.common.inventory.ContainerProgrammer


            case GUI_ID_ELECTROSTATIC_COMPRESSOR:
                return new Container4UpgradeSlots(player.inventory, (TileEntityElectrostaticCompressor)world.getTileEntity(x, y, z));
            case GUI_ID_OMNIDIRECTIONAL_HOPPER:
                return new ContainerOmnidirectionalHopper(player.inventory, (TileEntityOmnidirectionalHopper)world.getTileEntity(x, y, z));
            case GUI_ID_PROGRAMMER:
                return new ContainerProgrammer(player.inventory, (TileEntityProgrammer)world.getTileEntity(x, y, z));
            case GUI_ID_PNEUMATIC_DYNAMO:
            case GUI_ID_FLUX_COMPRESSOR:
                return new ContainerRF(player.inventory, world.getTileEntity(x, y, z));
        }
        return null;
View Full Code Here


    private int widgetPage;
    private int maxPage;

    public GuiProgrammer(InventoryPlayer player, TileEntityProgrammer te){

        super(new ContainerProgrammer(player, te), te, Textures.GUI_PROGRAMMER);
        ySize = 256;

        for(IProgWidget widget : TileEntityProgrammer.registeredWidgets) {
            widget.setX(132);
        }
View Full Code Here

TOP

Related Classes of pneumaticCraft.common.inventory.ContainerProgrammer

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.