mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 03:20:09 +00:00
22 lines
521 B
Objective-C
22 lines
521 B
Objective-C
//
|
|
// LOTRenderGroup.h
|
|
// Lottie
|
|
//
|
|
// Created by brandon_withrow on 6/27/17.
|
|
// Copyright © 2017 Airbnb. All rights reserved.
|
|
//
|
|
|
|
#import "LOTRenderNode.h"
|
|
|
|
@interface LOTRenderGroup : LOTRenderNode
|
|
|
|
- (instancetype _Nonnull )initWithInputNode:(LOTAnimatorNode * _Nullable)inputNode
|
|
contents:(NSArray * _Nonnull)contents
|
|
keyname:(NSString * _Nullable)keyname;
|
|
|
|
@property (nonatomic, strong, readonly) CALayer * _Nonnull containerLayer;
|
|
|
|
@end
|
|
|
|
|