blob: e8801a8cd86816819f8bf57b3eaade2465602ba2 [file] [log] [blame]
package com.airbnb.lottie.animation.content;
import java.util.List;
public interface Content {
String getName();
void setContents(List<Content> contentsBefore, List<Content> contentsAfter);
}