Package mekanism.generators.common.inventory.container

Examples of mekanism.generators.common.inventory.container.ContainerSolarGenerator


    switch(ID)
    {
      case 0:
        return new ContainerHeatGenerator(player.inventory, (TileEntityHeatGenerator)tileEntity);
      case 1:
        return new ContainerSolarGenerator(player.inventory, (TileEntitySolarGenerator)tileEntity);
      case 3:
        return new ContainerGasGenerator(player.inventory, (TileEntityGasGenerator)tileEntity);
      case 4:
        return new ContainerBioGenerator(player.inventory, (TileEntityBioGenerator)tileEntity);
      case 5:
View Full Code Here


{
  public TileEntitySolarGenerator tileEntity;

  public GuiSolarGenerator(InventoryPlayer inventory, TileEntitySolarGenerator tentity)
  {
    super(new ContainerSolarGenerator(inventory, tentity));
    tileEntity = tentity;
    guiElements.add(new GuiRedstoneControl(this, tileEntity, MekanismUtils.getResource(ResourceType.GUI, "GuiSolarGenerator.png")));
    guiElements.add(new GuiEnergyInfo(new IInfoHandler()
    {
      @Override
View Full Code Here

TOP

Related Classes of mekanism.generators.common.inventory.container.ContainerSolarGenerator

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.