mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-17 19:09:56 +00:00
18 lines
394 B
Objective-C
18 lines
394 B
Objective-C
//
|
|
// LOTFillRenderer.h
|
|
// Lottie
|
|
//
|
|
// Created by brandon_withrow on 6/27/17.
|
|
// Copyright © 2017 Airbnb. All rights reserved.
|
|
//
|
|
|
|
#import "LOTRenderNode.h"
|
|
#import "LOTShapeFill.h"
|
|
|
|
@interface LOTFillRenderer : LOTRenderNode
|
|
|
|
- (instancetype _Nonnull )initWithInputNode:(LOTAnimatorNode *_Nonnull)inputNode
|
|
shapeFill:(LOTShapeFill *_Nonnull)fill;
|
|
|
|
@end
|