mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 11:30:04 +00:00
24 lines
532 B
Objective-C
24 lines
532 B
Objective-C
//
|
|
// LOTLayerView.h
|
|
// LottieAnimator
|
|
//
|
|
// Created by Brandon Withrow on 12/14/15.
|
|
// Copyright © 2015 Brandon Withrow. All rights reserved.
|
|
//
|
|
|
|
#import "LOTPlatformCompat.h"
|
|
#import "LOTAnimatableLayer.h"
|
|
|
|
#import "LOTModels.h"
|
|
|
|
@interface LOTLayerView : LOTAnimatableLayer
|
|
|
|
- (instancetype)initWithModel:(LOTLayer *)model inLayerGroup:(LOTLayerGroup *)layerGroup;
|
|
|
|
- (void)LOT_addChildLayer:(CALayer *)childLayer;
|
|
|
|
@property (nonatomic, readonly) LOTLayer *layerModel;
|
|
@property (nonatomic, assign) BOOL debugModeOn;
|
|
|
|
@end
|