1 package cz.cuni.amis.pogamut.base3d.worldview.object; 2 3 import cz.cuni.amis.pogamut.multi.communication.worldview.object.ICompositeWorldObject; 4 5 /** 6 * General interface for objects whose visibility may change through time. 7 * 8 * @author Juraj 'Loque' Simlovic 9 * @author srlok 10 */ 11 public interface IViewable extends ICompositeWorldObject { 12 /** 13 * Tells, whether the object is currently visible. 14 * 15 * @return True if the object is visible; false otherwise. 16 */ 17 boolean isVisible(); 18 19 }