Package electricexpansion.common.containers

Examples of electricexpansion.common.containers.ContainerWireMill


                case 0:
                    return new ContainerAdvancedBatteryBox(player.inventory, (TileEntityAdvancedBatteryBox) tileEntity);
                case 1:
                    break; // What's this used for?
                case 2:
                    return new ContainerWireMill(player.inventory, (TileEntityWireMill) tileEntity);
                case 3:
                    break; // Logistics Wire
                case 4:
                    return new ContainerDistribution(player.inventory, (TileEntityQuantumBatteryBox) tileEntity);
                case 5:
View Full Code Here


    private int containerWidth;
    private int containerHeight;
   
    public GuiWireMill(InventoryPlayer par1InventoryPlayer, TileEntityWireMill tileEntity)
    {
        super(new ContainerWireMill(par1InventoryPlayer, tileEntity));
        this.tileEntity = tileEntity;
    }
View Full Code Here

TOP

Related Classes of electricexpansion.common.containers.ContainerWireMill

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.