Package forestry.energy.gadgets

Examples of forestry.energy.gadgets.EngineCopper


  @Override
  protected void drawGuiContainerBackgroundLayer(float var1, int mouseX, int mouseY) {
    super.drawGuiContainerBackgroundLayer(var1, mouseX, mouseY);

    EngineCopper engine = getEngine();
    int progress;
    if (engine.isBurning()) {
      progress = engine.getBurnTimeRemainingScaled(12);
      this.drawTexturedModalRect(guiLeft + 45, guiTop + 27 + 12 - progress, 176, 0 + 12 - progress, 14, progress + 2);
    }
  }
View Full Code Here

TOP

Related Classes of forestry.energy.gadgets.EngineCopper

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.