View Javadoc

1   package cz.cuni.amis.pogamut.udk.communication.worldview.objects;
2   
3   import cz.cuni.amis.pogamut.base3d.worldview.object.IViewable;
4   
5   public interface IGBViewable extends IViewable {
6   	
7   	/**
8   	 * Creates an update event that has to update visibility to false.
9   	 * @return
10  	 */
11  	public IGBWorldObjectDisappeared createDisappearEvent();
12  
13  }