2017-05-17 21:16:46 -03:00

28 lines
596 B
Objective-C

//
// LOTCompositionLayer.h
// Pods
//
// Created by Brandon Withrow on 2/17/17.
//
//
#import <QuartzCore/QuartzCore.h>
#import "LOTAnimationView_Compat.h"
@class LOTLayerGroup;
@class LOTAssetGroup;
@interface LOTCompositionLayer : CALayer
- (instancetype)initWithLayerGroup:(LOTLayerGroup *)layerGroup
withAssetGroup:(LOTAssetGroup *)assetGroup
withBounds:(CGRect)bounds
inBundle:(NSBundle *)bundle;
- (void)addSublayer:(LOTView *)view
toLayerNamed:(NSString *)layer;
- (void)layoutCustomChildLayers;
@end