Package pneumaticCraft.common.inventory

Examples of pneumaticCraft.common.inventory.ContainerElectricCompressor


            case GUI_ID_UNIVERSAL_SENSOR:
                return new ContainerUniversalSensor(player.inventory, (TileEntityUniversalSensor)world.getTileEntity(x, y, z));
            case GUI_ID_PNEUMATIC_GENERATOR:
                return new ContainerPneumaticGenerator(player.inventory, (TileEntityPneumaticGenerator)world.getTileEntity(x, y, z));
            case GUI_ID_ELECTRIC_COMPRESSOR:
                return new ContainerElectricCompressor(player.inventory, (TileEntityElectricCompressor)world.getTileEntity(x, y, z));
            case GUI_ID_PNEUMATIC_ENGINE:
                return new Container4UpgradeSlots(player.inventory, (TileEntityPneumaticEngine)world.getTileEntity(x, y, z));
            case GUI_ID_KINETIC_COMPRESSOR:
                return new Container4UpgradeSlots(player.inventory, (TileEntityKineticCompressor)world.getTileEntity(x, y, z));
            case GUI_ID_AERIAL_INTERFACE:
View Full Code Here


@SideOnly(Side.CLIENT)
public class GuiElectricCompressor extends GuiPneumaticContainerBase<TileEntityElectricCompressor>{
    private GuiAnimatedStat inputStat;

    public GuiElectricCompressor(InventoryPlayer player, TileEntityElectricCompressor te){
        super(new ContainerElectricCompressor(player, te), te, Textures.GUI_4UPGRADE_SLOTS);
    }
View Full Code Here

TOP

Related Classes of pneumaticCraft.common.inventory.ContainerElectricCompressor

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.