1 package cz.cuni.amis.pogamut.unreal.bot;
2
3 import cz.cuni.amis.pogamut.base3d.agent.IAgent3D;
4 import cz.cuni.amis.utils.exception.PogamutException;
5
6 /**
7 *
8 * @author ik
9 */
10 public interface IUnrealBot extends IAgent3D {
11
12
13 /**
14 * Restarts the bot in the game. Issues RESPAWN command.
15 * @throws cz.cuni.amis.pogamut.base.exceptions.PogamutException
16 */
17 public void respawn() throws PogamutException;
18
19
20 }