jsdw_ios/Pods/lottie-ios/Sources/Private/MainThread/NodeRenderSystem/Protocols/PathNode.swift

21 lines
274 B
Swift

//
// PathNode.swift
// lottie-swift
//
// Created by Brandon Withrow on 1/17/19.
//
// MARK: - PathNode
protocol PathNode {
var pathOutput: PathOutputNode { get }
}
extension PathNode where Self: AnimatorNode {
var outputNode: NodeOutput {
pathOutput
}
}