blob: 04bc801a67f6e9229f31603ba4c1b6f50d1b5e18 [file] [log] [blame] [raw]
package universalelectricity.implement;
import net.minecraft.src.ItemStack;
public interface IItemElectric extends IElectricityStorage, IVoltage
{
public double onReceiveElectricity(double wattHourReceive, ItemStack itemStack);
public double onUseElectricity(double wattHourRequest, ItemStack itemStack);
public boolean canReceiveElectricity();
public boolean canProduceElectricity();
public double getTransferRate();
}