2021-10-12 15:07:00 +04:00

21 lines
283 B
Swift

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