Package forestry.core.fluids

Examples of forestry.core.fluids.TankManager.fill()


  public int fill(ForgeDirection from, FluidStack resource, boolean doFill) {
    TankManager tankManager = getTankManager();
    if (tankManager == null)
      return FakeTank.INSTANCE.fill(resource, doFill);

    return tankManager.fill(from, resource, doFill);
  }

  @Override
  public FluidStack drain(ForgeDirection from, FluidStack resource, boolean doDrain) {
    TankManager tankManager = getTankManager();
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.