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