blob: edd684b6ac3df10b25a97d4fd35906fe01b437b7 [file] [log] [blame] [raw]
package universalelectricity.api.electricity;
import universalelectricity.api.energy.IEnergyNetwork;
/**
* Extended version of the energy network that properly implements amperage and voltage. If you want
* amps get last buffer and divide it by the voltage
*
* @author DarkGuardsman
*/
public interface IElectricalNetwork extends IEnergyNetwork
{
/** Gets the current voltage of the network at this point. */
public long getVoltage();
}