2022-07-17 23:02:55 +02:00

13 lines
273 B
Java

package api.hbm.tile;
public interface IHeatSource {
public int getHeatStored();
/**
* Removes heat from the system. Implementation has to include the checks preventing the heat from going into the negative.
* @param heat
*/
public void useUpHeat(int heat);
}