Package logisticspipes.gui

Examples of logisticspipes.gui.GuiSupplierPipe


    if(patternUpgarde) {
      module.setPatternMode(PatternMode.values()[mode]);
    } else {
      module.setSupplyMode(SupplyMode.values()[mode]);
    }
    return new GuiSupplierPipe(player.inventory, module.getDummyInventory(), module, patternUpgarde, slotArray);
  }
View Full Code Here


 
  @Override
  public Object getClientGui(EntityPlayer player) {
    LogisticsModule module = this.getLogisticsModule(player);
    if(!(module instanceof ModuleActiveSupplier)) return null;
    return new GuiSupplierPipe(player.inventory, ((ModuleActiveSupplier)module).getDummyInventory(), (ModuleActiveSupplier) module, false, new int[9]);
  }
View Full Code Here

TOP

Related Classes of logisticspipes.gui.GuiSupplierPipe

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.