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

20 lines
292 B
Swift

//
// AnimationSubview.swift
// lottie-swift
//
// Created by Brandon Withrow on 2/4/19.
//
#if canImport(UIKit)
import UIKit
/// A view that can be added to a keypath of an AnimationView
public final class AnimationSubview: UIView {
var viewLayer: CALayer? {
layer
}
}
#endif