Swiftgram/submodules/lottie-ios/Sources/Public/macOS/AnimationSubview.macOS.swift
2022-06-06 18:25:58 +04:00

20 lines
290 B
Swift

//
// 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