mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
12 lines
338 B
Java
12 lines
338 B
Java
package com.airbnb.lottie.animation.content;
|
|
|
|
import android.graphics.Canvas;
|
|
import android.graphics.Matrix;
|
|
import android.graphics.RectF;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface DrawingContent extends Content {
|
|
void draw(Canvas canvas, Matrix matrix, int i);
|
|
|
|
void getBounds(RectF rectF, Matrix matrix, boolean z);
|
|
}
|