1 package cz.cuni.amis.pogamut.base3d.worldview.object; 2 3 /** 4 * General interface for objects whose reachability may change through time. 5 * 6 * @author Juraj 'Loque' Simlovic 7 */ 8 public interface IReachable 9 { 10 /** 11 * Tells, whether the object is currently reachable. 12 * 13 * @return True if the object is reachable; false otherwise. 14 */ 15 boolean isReachable(); 16 17 }