resonant-induction/1.3/common/EUI/SteamPower/api/IHeatProducer.java

14 lines
448 B
Java
Raw Normal View History

package EUI.SteamPower.api;
public interface IHeatProducer
{
/**
* onProduceElectricity is called when a conductor is connected to the producer block in which the conductor will demand power from the producer
* block.
* @param jouls - The maximum jouls can be transfered
* @param side - The side of block in which the conductor is on
* @return jouls - Return jouls to consumer
*/
public float onProduceHeat(float jouls, int side);
}