12 lines
223 B
Java
12 lines
223 B
Java
|
package mekanism.api;
|
||
|
|
||
|
/**
|
||
|
* Implement this class in a TileEntity if you wish for it to be able to heat up a Salination Plant.
|
||
|
* @author aidancbrady
|
||
|
*
|
||
|
*/
|
||
|
public interface ISalinationSolar
|
||
|
{
|
||
|
public boolean seesSun();
|
||
|
}
|