resonant-induction/APIs/icbm/api/IRadarDetectable.java

19 lines
377 B
Java
Raw Normal View History

2013-10-09 23:55:28 +02:00
package icbm.api;
import net.minecraft.tileentity.TileEntity;
/**
* Make your TileEntity implement this to have special reaction to radar scanning.
*
* @author Calclavia
*
*/
public interface IRadarDetectable
{
/**
* @param radar - The radar tile entity
* @return True if this tile is to be shown in the radar.
*/
public boolean canDetect(TileEntity radar);
}