View Javadoc

1   package cz.cuni.amis.pogamut.defcon.ai.fleetai;
2   
3   import cz.cuni.amis.pogamut.defcon.ai.IUnitAI;
4   import cz.cuni.amis.pogamut.defcon.base3d.worldview.object.DefConLocation;
5   
6   /**
7    * Common interface for all AIs for own fleets.
8    * 
9    * @author Radek 'Black_Hand' Pibil
10   * 
11   */
12  public interface IFleetAI extends IUnitAI {
13  	void setTargetLocation(DefConLocation target);
14  
15  	int[] getFleetMembers();
16  }