Package electricexpansion.common.containers

Examples of electricexpansion.common.containers.ContainerInsulationMachine


                case 3:
                    break; // Logistics Wire
                case 4:
                    return new ContainerDistribution(player.inventory, (TileEntityQuantumBatteryBox) tileEntity);
                case 5:
                    return new ContainerInsulationMachine(player.inventory, (TileEntityInsulatingMachine) tileEntity);
                case 6:
                    return new ContainerFuseBox(player.inventory, (TileEntityFuseBox) tileEntity);
            }
        }
        return null;
View Full Code Here


    private int containerWidth;
    private int containerHeight;
   
    public GuiInsulationMachine(InventoryPlayer par1InventoryPlayer, TileEntityInsulatingMachine tileEntity)
    {
        super(new ContainerInsulationMachine(par1InventoryPlayer, tileEntity));
        this.tileEntity = tileEntity;
    }
View Full Code Here

TOP

Related Classes of electricexpansion.common.containers.ContainerInsulationMachine

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.