1 package SocialSteeringsBeta;
2
3 import cz.cuni.amis.pogamut.ut2004.bot.impl.UT2004Bot;
4
5 /**
6 *
7 * @author Petr
8 */
9 public interface IAnimationEngine {
10 boolean canBeInterupt(UT2004Bot bot);
11 void playAnimation(String animationID, UT2004Bot bot, boolean loop);
12
13 }