Update lottie-ios

This commit is contained in:
Ali
2022-06-06 18:25:58 +04:00
parent 6541feab69
commit 1c0113d616
601 changed files with 20997 additions and 19039 deletions

View File

@@ -0,0 +1,19 @@
//
// AnimationSubview.swift
// lottie-swift-iOS
//
// Created by Brandon Withrow on 2/5/19.
//
#if os(macOS)
import AppKit
/// A view that can be added to a keypath of an AnimationView
public final class AnimationSubview: NSView {
var viewLayer: CALayer? {
layer
}
}
#endif