Package appeng.parts.layers

Source Code of appeng.parts.layers.LayerIPipeConnection

package appeng.parts.layers;

import net.minecraftforge.common.util.ForgeDirection;
import appeng.api.parts.IPart;
import appeng.api.parts.LayerBase;
import buildcraft.api.transport.IPipeConnection;
import buildcraft.api.transport.IPipeTile.PipeType;

public class LayerIPipeConnection extends LayerBase implements IPipeConnection
{

  @Override
  public ConnectOverride overridePipeConnection(PipeType type, ForgeDirection with)
  {
    IPart part = getPart( with );
    if ( part instanceof IPipeConnection )
      return ((IPipeConnection) part).overridePipeConnection( type, with );
    return ConnectOverride.DEFAULT;
  }

}
TOP

Related Classes of appeng.parts.layers.LayerIPipeConnection

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.