Removed Layers from API - I'm sick of people commenting on it.

This commit is contained in:
AlgorithmX2
2014-05-27 12:06:55 -05:00
parent ea936d3b72
commit eb8e8da0a2
11 changed files with 811 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
package appeng.api.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;
}
}