Package logisticspipes.modules

Examples of logisticspipes.modules.ModuleApiaristAnalyser


    super(id);
  }

  @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


    return new GuiApiaristAnalyser(module, player.inventory);
  }

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

  private ModuleApiaristAnalyser analyserModule;

  public PipeItemsApiaristAnalyser(Item item) {
    super(item);
    analyserModule = new ModuleApiaristAnalyser();
    analyserModule.registerHandler(this, this);
  }
View Full Code Here

    return new ApiaristAnalyserMode(getId());
  }

  @Override
  public void processPacket(EntityPlayer player) {
    ModuleApiaristAnalyser module = this.getLogisticsModule(player, ModuleApiaristAnalyser.class);
    if(module == null) return;
    module.setExtractMode(mode);
  }
View Full Code Here

TOP

Related Classes of logisticspipes.modules.ModuleApiaristAnalyser

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.