blob: 0162dcde1ef129f76add1aa5ddd5c6b7aebff53b [file] [log] [blame] [raw]
package atomicscience.api;
/**
* Applied to all TileEntities or Blocks that has a temperature value. This will allow the
* temperature measurement tool to measure the block.
*
* @author Calclavia
*
*/
public interface ITemperature
{
/**
* Gets the temperature of this block in kelvin.
*/
public float getTemperature();
public void setTemperature(float kelvin);
}