Package logisticspipes.gui

Examples of logisticspipes.gui.GuiSatellitePipe


        if(pipe == null || pipe.pipe == null || !(pipe.pipe instanceof PipeItemsProviderLogistics)) return null;
        return new GuiProviderPipe(player.inventory, ((PipeItemsProviderLogistics)pipe.pipe).getprovidingInventory(), (PipeItemsProviderLogistics)pipe.pipe);
     
      case GuiIDs.GUI_SatelitePipe_ID:
        if(pipe != null && pipe.pipe != null && pipe.pipe instanceof PipeItemsSatelliteLogistics) {
          return new GuiSatellitePipe((PipeItemsSatelliteLogistics)pipe.pipe, player);
        }
        if(pipe != null && pipe.pipe != null && pipe.pipe instanceof PipeFluidSatellite) {
          return new GuiSatellitePipe((PipeFluidSatellite)pipe.pipe, player);
        }
        return null;
       
      case GuiIDs.GUI_Normal_Orderer_ID:
        return new NormalGuiOrderer(x, y, z, MainProxy.getDimensionForWorld(world), player);
View Full Code Here

TOP

Related Classes of logisticspipes.gui.GuiSatellitePipe

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.