View Javadoc

1   package cz.cuni.amis.pogamut.ut2004.tag.bot;
2   
3   import cz.cuni.amis.pogamut.ut2004.bot.impl.UT2004Bot;
4   import cz.cuni.amis.pogamut.ut2004.bot.impl.UT2004BotModuleController;
5   
6   public class UT2004BotTagController<BOT extends UT2004Bot> extends UT2004BotModuleController<BOT> {
7   
8   	protected BotTagModule tag;
9   	
10  	protected void initializeModules(BOT bot) {
11  		super.initializeModules(bot);
12  		tag = new BotTagModule(bot, info, players);
13  	}
14  
15  	public BotTagModule getTag() {
16  		return tag;
17  	};
18  	
19  }