Updated RF Api ( should work for old api too - at least temporary ).

This commit is contained in:
AlgorithmX2
2014-05-06 18:09:31 -05:00
parent 50aa0b9062
commit 5bf8e9d7d0
3 changed files with 28 additions and 13 deletions
+11 -6
View File
@@ -17,12 +17,6 @@ public class NullRFHandler implements IEnergyHandler
return 0;
}
@Override
public boolean canInterface(ForgeDirection from)
{
return true;
}
@Override
public int getEnergyStored(ForgeDirection from)
{
@@ -35,4 +29,15 @@ public class NullRFHandler implements IEnergyHandler
return 0;
}
@Deprecated
public boolean canInterface(ForgeDirection from)
{
return true;
}
@Override
public boolean canConnectEnergy(ForgeDirection from) {
return true;
}
}