mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 11:30:04 +00:00
26 lines
555 B
Objective-C
26 lines
555 B
Objective-C
//
|
|
// LOTLayerGroup.h
|
|
// Pods
|
|
//
|
|
// Created by Brandon Withrow on 2/16/17.
|
|
//
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <CoreGraphics/CoreGraphics.h>
|
|
|
|
@class LOTLayer;
|
|
|
|
@interface LOTLayerGroup : NSObject
|
|
|
|
- (instancetype)initWithLayerJSON:(NSArray *)layersJSON
|
|
withBounds:(CGRect)bounds
|
|
withFramerate:(NSNumber *)framerate;
|
|
|
|
@property (nonatomic, readonly) NSArray <LOTLayer *> *layers;
|
|
|
|
- (LOTLayer *)layerModelForID:(NSNumber *)layerID;
|
|
- (LOTLayer *)layerForReferenceID:(NSString *)referenceID;
|
|
|
|
@end
|