Examples of GuiApiaristAnalyser


Examples of logisticspipes.gui.modules.GuiApiaristAnalyser

  @Override
  public Object getClientGui(EntityPlayer player) {
    ModuleApiaristAnalyser module = this.getLogisticsModule(player.getEntityWorld(), ModuleApiaristAnalyser.class);
    if(module == null) return null;
    module.setExtractMode(extractorMode);
    return new GuiApiaristAnalyser(module, player.inventory);
  }
View Full Code Here

Examples of logisticspipes.gui.modules.GuiApiaristAnalyser

  @Override
  public Object getClientGui(EntityPlayer player) {
    LogisticsModule module = this.getLogisticsModule(player);
    if(!(module instanceof ModuleApiaristAnalyser)) return null;
    return new GuiApiaristAnalyser((ModuleApiaristAnalyser) module, player.inventory);
  }
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.