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.IBotStateSpawned;
5
6 public class BotStateSpawned extends AgentState implements IBotStateSpawned {
7
8 public BotStateSpawned(String description) {
9 super(description);
10 }
11
12 }