2017-02-24 09:47:18 -08:00

27 lines
542 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;
- (void)addSublayer:(LOTView *)view
toLayerNamed:(NSString *)layer;
- (void)layoutCustomChildLayers;
@end