| 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(); | |
| } |