Package mekanism.client.gui.GuiEnergyGauge

Examples of mekanism.client.gui.GuiEnergyGauge.IEnergyInfoHandler


  public GuiEnergyCube(InventoryPlayer inventory, TileEntityEnergyCube tentity)
  {
    super(new ContainerEnergyCube(inventory, tentity));
    tileEntity = tentity;
    guiElements.add(new GuiRedstoneControl(this, tileEntity, MekanismUtils.getResource(ResourceType.GUI, "GuiEnergyCube.png")));
    guiElements.add(new GuiEnergyGauge(new IEnergyInfoHandler()
    {
      @Override
      public IStrictEnergyStorage getEnergyStorage()
      {
        return tileEntity;
View Full Code Here

TOP

Related Classes of mekanism.client.gui.GuiEnergyGauge.IEnergyInfoHandler

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.