#ifndef AnimationTime_hpp #define AnimationTime_hpp namespace lottie { /// Defines animation time in Frames (Seconds * Framerate). typedef float AnimationFrameTime; /// Defines animation time by a progress from 0 (beginning of the animation) to 1 (end of the animation) typedef float AnimationProgressTime; } #endif /* AnimationTime_hpp */