1 package cz.cuni.amis.pogamut.udk.communication.messages;
2
3 import cz.cuni.amis.pogamut.base.communication.worldview.object.IWorldObject;
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 unifying Self and Player messages.
10 * @author ik
11 */
12 public interface IPerson extends IWorldObject, IRotable, ILocomotive, ILocated {
13
14 String getName();
15 }