mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
22 lines
478 B
Objective-C
22 lines
478 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 inComposition:(LOTComposition *)comp;
|
|
|
|
@property (nonatomic, readonly) LOTLayer *layerModel;
|
|
@property (nonatomic, assign) BOOL debugModeOn;
|
|
|
|
@end
|