Package mekanism.client.gui

Examples of mekanism.client.gui.GuiGasGauge$IGasInfoHandler


            "Producing: " + MekanismUtils.getEnergyDisplay(tileEntity.generationRate) + "/t",
            "Storing: " + MekanismUtils.getEnergyDisplay(tileEntity.getEnergy()),
            "Max Output: " + MekanismUtils.getEnergyDisplay(tileEntity.getMaxOutput()) + "/t");
      }
    }, this, MekanismUtils.getResource(ResourceType.GUI, "GuiGasGenerator.png")));
    guiElements.add(new GuiGasGauge(new IGasInfoHandler() {
      @Override
      public GasTank getTank()
      {
        return tileEntity.fuelTank;
      }
View Full Code Here

TOP

Related Classes of mekanism.client.gui.GuiGasGauge$IGasInfoHandler

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.