Package buildcraft.energy

Examples of buildcraft.energy.TileEngineIron


  }

  @Override
  protected void drawGuiContainerBackgroundLayer(float f, int x, int y) {
    super.drawGuiContainerBackgroundLayer(f, x, y);
    TileEngineIron engine = (TileEngineIron) tile;
    drawFluid(engine.getFuel(), guiLeft + 104, guiTop + 19, 16, 58, TileEngineIron.MAX_LIQUID);
    drawFluid(engine.getCoolant(), guiLeft + 122, guiTop + 19, 16, 58, TileEngineIron.MAX_LIQUID);
        mc.renderEngine.bindTexture(TEXTURE);
    drawTexturedModalRect(guiLeft + 104, guiTop + 19, 176, 0, 16, 60);
    drawTexturedModalRect(guiLeft + 122, guiTop + 19, 176, 0, 16, 60);
  }
View Full Code Here

TOP

Related Classes of buildcraft.energy.TileEngineIron

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.