Wallpaper_Home/wallpaper_project/Pods/lottie-ios/Sources/Public/AnimationCache/LottieAnimationCache.swift
2024-04-17 14:37:20 +08:00

16 lines
538 B
Swift

//
// LottieAnimationCache.swift
// Lottie
//
// Created by Marcelo Fabri on 10/17/22.
//
/// A customization point to configure which `AnimationCacheProvider` will be used.
public enum LottieAnimationCache {
/// The animation cache that will be used when loading `LottieAnimation` models.
/// Using an Animation Cache can increase performance when loading an animation multiple times.
/// Defaults to DefaultAnimationCache.sharedCache.
public static var shared: AnimationCacheProvider? = DefaultAnimationCache.sharedCache
}