Package logisticspipes.gui.orderer

Examples of logisticspipes.gui.orderer.NormalMk2GuiOrderer


      case GuiIDs.GUI_Normal_Orderer_ID:
        return new NormalGuiOrderer(x, y, z, MainProxy.getDimensionForWorld(world), player);
       
      case GuiIDs.GUI_Normal_Mk2_Orderer_ID:
        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);
       
View Full Code Here

TOP

Related Classes of logisticspipes.gui.orderer.NormalMk2GuiOrderer

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.