Package forestry.factory.gadgets

Examples of forestry.factory.gadgets.MachineBottler


  }

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

    if (boiler.isWorking()) {
      int i1 = boiler.getFillProgressScaled(24);
      drawTexturedModalRect(guiLeft + 80, guiTop + 39, 176, 74, 24 - i1, 16);
    }
  }
View Full Code Here

TOP

Related Classes of forestry.factory.gadgets.MachineBottler

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.