View Javadoc

1   package cz.cuni.amis.pogamut.udk.communication.translator.shared.events;
2   
3   import cz.cuni.amis.pogamut.base.communication.translator.event.WorldEventIdentityWrapper;
4   
5   public class InitCommandRequest extends WorldEventIdentityWrapper {
6   
7       @Override
8   	public String toString() {
9   		return "InitCommandRequest[GameBots2004 are waiting for the agent to send INIT command to spawn the bot inside UT2004]";
10  	}
11      
12      public long getSimTime() {
13      	return 0;
14      }
15  	
16  }