/**
 * This interface is used by AnimatedSprites to indicate they can be clicked.
 */
public interface Clickable {

    /**
     * This method is invoked when an AnimatedSprite is clicked.
     */
    public void click();

}

