Package appeng.container.implementations

Examples of appeng.container.implementations.ContainerWireless


    units = new GuiImgButton( this.guiLeft - 18, guiTop + 8, Settings.POWER_UNITS, AEConfig.instance.selectedPowerUnit() );
    buttonList.add( units );
  }

  public GuiWireless(InventoryPlayer inventoryPlayer, TileWireless te) {
    super( new ContainerWireless( inventoryPlayer, te ) );
    this.ySize = 166;
  }
View Full Code Here


  public void drawFG(int offsetX, int offsetY, int mouseX, int mouseY)
  {
    fontRendererObj.drawString( getGuiDisplayName( GuiText.Wireless.getLocal() ), 8, 6, 4210752 );
    fontRendererObj.drawString( GuiText.inventory.getLocal(), 8, ySize - 96 + 3, 4210752 );

    ContainerWireless cw = (ContainerWireless) inventorySlots;

    if ( cw.range > 0 )
    {
      String firstMessage = GuiText.Range.getLocal() + ": " + (cw.range / 10.0) + " m";
      String secondMessage = GuiText.PowerUsageRate.getLocal() + ": " + Platform.formatPowerLong( cw.drain, true );
View Full Code Here

TOP

Related Classes of appeng.container.implementations.ContainerWireless

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.