View Javadoc

1   package cz.cuni.amis.pogamut.ut2004.bot.impl;
2   
3   import cz.cuni.amis.pogamut.base.communication.translator.event.IWorldChangeEvent;
4   import cz.cuni.amis.pogamut.base.communication.worldview.event.IWorldEvent;
5   
6   /**
7    * Issued by {@link UT2004Bot} itself right at the beginning of {@link UT2004Bot#initCommandRequested()} that allows to finish initialization
8    * of modules that depends on navigation graphs and other stuff.
9    *  
10   * @author Jimmy
11   */
12  public class BotAboutToBeSpawnedForTheFirstTime implements IWorldChangeEvent, IWorldEvent {
13  
14  	@Override
15  	public long getSimTime() {
16  		return 0;
17  	}
18  
19  }