Package logisticspipes.gui.orderer

Examples of logisticspipes.gui.orderer.GuiRequestTable


        if(pipe == null || pipe.pipe == null || !((pipe.pipe instanceof PipeItemsFirewall))) return null;
        return new GuiFirewall((PipeItemsFirewall) pipe.pipe, player);

      case GuiIDs.GUI_Request_Table_ID:
        if(pipe == null || pipe.pipe == null || !(pipe.pipe instanceof PipeBlockRequestTable)) return null;
        return new GuiRequestTable(player, ((PipeBlockRequestTable)pipe.pipe));
       
      default:break;
      }
    }
    return null;
View Full Code Here

TOP

Related Classes of logisticspipes.gui.orderer.GuiRequestTable

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.