mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 03:20:09 +00:00
18 lines
410 B
Objective-C
18 lines
410 B
Objective-C
//
|
|
// LOTTrimPathNode.h
|
|
// Lottie
|
|
//
|
|
// Created by brandon_withrow on 7/21/17.
|
|
// Copyright © 2017 Airbnb. All rights reserved.
|
|
//
|
|
|
|
#import "LOTAnimatorNode.h"
|
|
#import "LOTShapeTrimPath.h"
|
|
|
|
@interface LOTTrimPathNode : LOTAnimatorNode
|
|
|
|
- (instancetype _Nonnull )initWithInputNode:(LOTAnimatorNode *_Nullable)inputNode
|
|
trimPath:(LOTShapeTrimPath *_Nonnull)trimPath;
|
|
|
|
@end
|