Package mekanism.client.gui

Examples of mekanism.client.gui.GuiFluidGauge$IFluidInfoHandler


            "Producing: " + MekanismUtils.getEnergyDisplay(tileEntity.isActive ? MekanismGenerators.heatGeneration : tileEntity.getBoost()) + "/t",
            "Storing: " + MekanismUtils.getEnergyDisplay(tileEntity.getEnergy()),
            "Max Output: " + MekanismUtils.getEnergyDisplay(tileEntity.getMaxOutput()) + "/t");
      }
    }, this, MekanismUtils.getResource(ResourceType.GUI, "GuiHeatGenerator.png")));
    guiElements.add(new GuiFluidGauge(new IFluidInfoHandler() {
      @Override
      public FluidTank getTank()
      {
        return tileEntity.lavaTank;
      }
View Full Code Here

TOP

Related Classes of mekanism.client.gui.GuiFluidGauge$IFluidInfoHandler

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.