mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
23 lines
293 B
Swift
23 lines
293 B
Swift
//
|
|
// PathNode.swift
|
|
// lottie-swift
|
|
//
|
|
// Created by Brandon Withrow on 1/17/19.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
// MARK: - PathNode
|
|
|
|
protocol PathNode {
|
|
var pathOutput: PathOutputNode { get }
|
|
}
|
|
|
|
extension PathNode where Self: AnimatorNode {
|
|
|
|
var outputNode: NodeOutput {
|
|
pathOutput
|
|
}
|
|
|
|
}
|