mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
13 lines
273 B
Java
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);
|
|
}
|