View Javadoc

1   package cz.cuni.amis.pogamut.emohawk.utils;
2   
3   import java.io.Serializable;
4   
5   import cz.cuni.amis.pogamut.ut2004.utils.UCCWrapper;
6   import cz.cuni.amis.pogamut.ut2004.utils.UCCWrapperConf;
7   
8   /**
9    * Configuration for {@link UCCWrapper} having Emohawk specific setup.
10   * @author Jimmy
11   */
12  public class UCCWrapperConfEmohawk extends UCCWrapperConf implements Serializable {
13  
14      /**
15  	 * Auto-generated.
16  	 */
17  	private static final long serialVersionUID = -4232351909033031510L;
18  
19  	public UCCWrapperConfEmohawk() {
20      	patterns = new UCCWrapperPatternsEmohawk();
21      	mapName = "EmohawkVille_Runtime_04";
22      	gameBotsPack = "GBEmohawk";
23      	gameType = "EmohawkScenario";
24      	startOnUnusedPort = false;
25      }
26      
27  }