Package appeng.parts.layers

Source Code of appeng.parts.layers.LayerIBatteryProvider

package appeng.parts.layers;

import net.minecraftforge.common.util.ForgeDirection;
import appeng.api.parts.IPart;
import appeng.api.parts.LayerBase;
import buildcraft.api.mj.IBatteryObject;
import buildcraft.api.mj.ISidedBatteryProvider;

public class LayerIBatteryProvider extends LayerBase implements ISidedBatteryProvider
{

  @Override
  public IBatteryObject getMjBattery(String kind, ForgeDirection direction)
  {
    IPart p = getPart( direction );

    if ( p instanceof ISidedBatteryProvider )
      return ((ISidedBatteryProvider) p).getMjBattery( kind, direction );

    return null;
  }

}
TOP

Related Classes of appeng.parts.layers.LayerIBatteryProvider

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.