View Javadoc

1   package cz.cuni.amis.pogamut.base3d.agent;
2   
3   import cz.cuni.amis.pogamut.base.agent.IEmbodiedAgent;
4   import cz.cuni.amis.pogamut.base3d.worldview.object.ILocated;
5   import cz.cuni.amis.pogamut.base3d.worldview.object.ILocomotive;
6   import cz.cuni.amis.pogamut.base3d.worldview.object.IRotable;
7   
8   /**
9    * Interface of agent embodied in a 3D environment.
10   * @author ik
11   */
12  public interface IAgent3D extends IEmbodiedAgent, ILocated, ILocomotive, IRotable {
13  
14  }