Examples of FluidGuiOrderer


Examples of logisticspipes.gui.orderer.FluidGuiOrderer

        if(pipe == null || pipe.pipe == null || !(pipe.pipe instanceof PipeItemsRequestLogisticsMk2)) return null;
        return new NormalMk2GuiOrderer(((PipeItemsRequestLogisticsMk2)pipe.pipe), player);
       
      case GuiIDs.GUI_Fluid_Orderer_ID:
        if(pipe == null || pipe.pipe == null || !(pipe.pipe instanceof PipeFluidRequestLogistics)) return null;
        return new FluidGuiOrderer(((PipeFluidRequestLogistics)pipe.pipe), player);
       
      case GuiIDs.GUI_Inv_Sys_Connector_ID:
        if(pipe == null || pipe.pipe == null || !(pipe.pipe instanceof PipeItemsInvSysConnector)) return null;
        return new GuiInvSysConnector(player, (PipeItemsInvSysConnector)pipe.pipe);
       
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.