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