Gifu/Source/AnimatedFrame.swift

6 lines
158 B
Swift

/// Keeps a reference to an `UIImage` instance and its duration as a GIF frame.
struct AnimatedFrame {
let image: UIImage?
let duration: NSTimeInterval
}