Package logisticspipes.gui.popup

Examples of logisticspipes.gui.popup.GuiDiskPopup


    } else if(guibutton.id == 100) {
      this.extentionController.retract();
      this.setSubGui(new RequestMonitorPopup(_table, orderIdForButton));
    } else if (guibutton.id == 18) {
      MainProxy.sendPacketToServer(PacketHandler.getPacket(DiskRequestConectPacket.class).setPosX(_table.getX()).setPosY(_table.getY()).setPosZ(_table.getZ()));
      this.setSubGui(new GuiDiskPopup(this));
    } else if (guibutton.id == 20) {
      itemDisplay.cycle();
    }
  }
View Full Code Here


  @Override
  protected void actionPerformed(GuiButton guibutton) {
    super.actionPerformed(guibutton);
    if (guibutton.id == 12) {
      MainProxy.sendPacketToServer(PacketHandler.getPacket(DiskRequestConectPacket.class).setPosX(pipe.getX()).setPosY(pipe.getY()).setPosZ(pipe.getZ()));
      this.setSubGui(new GuiDiskPopup(this));
    }
  }
View Full Code Here

TOP

Related Classes of logisticspipes.gui.popup.GuiDiskPopup

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.