View Javadoc

1   /*
2    * To change this template, choose Tools | Templates
3    * and open the template in the editor.
4    */
5   
6   package cz.cuni.amis.pogamut.udk.communication.messages;
7   
8   import cz.cuni.amis.pogamut.base.communication.messages.InfoMessage;
9   import cz.cuni.amis.pogamut.base.communication.worldview.event.IWorldEvent;
10  import cz.cuni.amis.pogamut.udk.communication.worldview.objects.IGBWorldEvent;
11  
12  /**
13   *
14   * @author ik
15   */
16  public class GBEvent extends InfoMessage implements IGBWorldEvent {
17  
18      public IWorldEvent getWorldEvent() {
19          return this;
20      }
21  
22  	@Override
23  	public long getSimTime() {
24  		return 0;
25  	}
26  
27  }