Examples of ItemIdentifierStack


Examples of logisticspipes.utils.item.ItemIdentifierStack

  public ItemIdentifierStack getMaterials(int slotnr) {
    return _dummyInventory.getIDStackInSlot(slotnr);
  }

  public FluidIdentifier getFluidMaterial(int slotnr) {
    ItemIdentifierStack stack = _liquidInventory.getIDStackInSlot(slotnr);
    if(stack == null) return null;
    return FluidIdentifier.get(stack.getItem());
  }
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.