Mekanism-tilera-Edition/common/universalelectricity/core/block/IConductor.java

18 lines
469 B
Java
Raw Normal View History

2013-04-13 16:35:13 +02:00
package universalelectricity.core.block;
public interface IConductor extends INetworkProvider, INetworkConnection
2013-04-13 16:35:13 +02:00
{
/**
* Gets the resistance of the conductor. Used to calculate energy loss. A higher resistance
* means a higher energy loss.
*
* @return The amount of resistance in Ohms.
*/
public float getResistance();
2013-04-13 16:35:13 +02:00
/**
* @return The maximum amount of amps this conductor can handle before melting down.
*/
public float getCurrentCapacity();
2013-04-13 16:35:13 +02:00
}