Package logisticspipes.gui

Examples of logisticspipes.gui.GuiFluidSupplierPipe


    if(ID < 110 && ID > 0) {
      switch(ID) {
     
      case GuiIDs.GUI_FluidSupplier_ID:
        if(pipe == null || pipe.pipe == null || !(pipe.pipe instanceof PipeItemsFluidSupplier)) return null;
        return new GuiFluidSupplierPipe(player.inventory, ((PipeItemsFluidSupplier)pipe.pipe).getDummyInventory(), (PipeItemsFluidSupplier)pipe.pipe);
     
      case GuiIDs.GUI_FluidSupplier_MK2_ID:
        if(pipe == null || pipe.pipe == null || !(pipe.pipe instanceof PipeFluidSupplierMk2)) return null;
        return new GuiFluidSupplierMk2Pipe(player.inventory, ((PipeFluidSupplierMk2)pipe.pipe).getDummyInventory(), (PipeFluidSupplierMk2)pipe.pipe);
       
View Full Code Here

TOP

Related Classes of logisticspipes.gui.GuiFluidSupplierPipe

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.