View Javadoc

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