9 lines
234 B
Java
9 lines
234 B
Java
|
package com.airbnb.lottie.animation.content;
|
||
|
|
||
|
import com.airbnb.lottie.model.content.ShapeData;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public interface ShapeModifierContent extends Content {
|
||
|
ShapeData modifyShape(ShapeData shapeData);
|
||
|
}
|