View Javadoc

1   package cz.cuni.amis.pogamut.ut2004.bot.state.impl;
2   
3   import cz.cuni.amis.pogamut.base.agent.state.impl.AgentState;
4   import cz.cuni.amis.pogamut.ut2004.bot.state.IBotStateHelloBotReceived;
5   
6   public class BotStateHelloBotReceived extends AgentState implements IBotStateHelloBotReceived {
7   
8   	public BotStateHelloBotReceived(String description) {
9   		super(description);
10  	}
11  
12  }