blob: c3e9e24a53a72d597324b585e1c0850a917d9f5f [file] [log] [blame]
package com.airbnb.lottie.samples;
import android.support.v4.util.Pair;
interface ILottieApplication {
void startRecordingDroppedFrames();
/**
* Returns the number of frames dropped since starting
**/
Pair<Integer, Long> stopRecordingDroppedFrames();
}