Package appeng.api.parts

Examples of appeng.api.parts.IPart


  }

  @Override
  public boolean canFill(ForgeDirection from, net.minecraftforge.fluids.Fluid fluid)
  {
    IPart part = getPart( from );
    if ( part instanceof IFluidHandler )
      return ((IFluidHandler) part).canFill( from, fluid );
    return false;
  }
View Full Code Here


  }

  @Override
  public boolean canDrain(ForgeDirection from, net.minecraftforge.fluids.Fluid fluid)
  {
    IPart part = getPart( from );
    if ( part instanceof IFluidHandler )
      return ((IFluidHandler) part).canDrain( from, fluid );
    return false;
  }
View Full Code Here

  }

  @Override
  public FluidTankInfo[] getTankInfo(ForgeDirection from)
  {
    IPart part = getPart( from );
    if ( part instanceof IFluidHandler )
      return ((IFluidHandler) part).getTankInfo( from );
    return emptyList;
  }
View Full Code Here

TOP

Related Classes of appeng.api.parts.IPart

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.