View Javadoc

1   package cz.cuni.amis.pogamut.ut2004.communication.translator.shared.events;
2   
3   import cz.cuni.amis.pogamut.ut2004.communication.messages.gbinfomessages.Spawn;
4   
5   public class BotFirstSpawned extends Spawn {
6   	
7   	public String toString() {
8   		return "BotFirstSpawned[The bot was spawned for the first time in the environment as a result of INIT command!]";
9   	}
10  
11  }
12