Package electricexpansion.common.containers

Examples of electricexpansion.common.containers.ContainerAdvancedBatteryBox


        if (tileEntity != null)
        {
            switch (ID)
            {
                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:
View Full Code Here


  private ArrayList<EnumAdvBattBoxMode> validModes;

  public GuiAdvancedBatteryBox(InventoryPlayer par1InventoryPlayer, TileEntityAdvancedBatteryBox te)
  {
    super(new ContainerAdvancedBatteryBox(par1InventoryPlayer, te));
    this.tileEntity = te;
    this.validModes = te.getAvailableModes();
  }
View Full Code Here

TOP

Related Classes of electricexpansion.common.containers.ContainerAdvancedBatteryBox

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.