mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-17 11:00:07 +00:00
18 lines
407 B
Objective-C
18 lines
407 B
Objective-C
//
|
|
// LOTPolystarAnimator.h
|
|
// Lottie
|
|
//
|
|
// Created by brandon_withrow on 7/27/17.
|
|
// Copyright © 2017 Airbnb. All rights reserved.
|
|
//
|
|
|
|
#import "LOTAnimatorNode.h"
|
|
#import "LOTShapeStar.h"
|
|
|
|
@interface LOTPolystarAnimator : LOTAnimatorNode
|
|
|
|
- (instancetype _Nonnull )initWithInputNode:(LOTAnimatorNode *_Nullable)inputNode
|
|
shapeStar:(LOTShapeStar *_Nonnull)shapeStar;
|
|
|
|
@end
|