2017-07-28 14:46:27 -07:00

21 lines
447 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;
@property (nonatomic, strong, readonly) CALayer * _Nonnull containerLayer;
@end