mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-16 18:40:05 +00:00
19 lines
380 B
Objective-C
19 lines
380 B
Objective-C
//
|
|
// LOTMaskContainer.h
|
|
// Lottie
|
|
//
|
|
// Created by brandon_withrow on 7/19/17.
|
|
// Copyright © 2017 Airbnb. All rights reserved.
|
|
//
|
|
|
|
#import <QuartzCore/QuartzCore.h>
|
|
#import "LOTMask.h"
|
|
|
|
@interface LOTMaskContainer : CALayer
|
|
|
|
- (instancetype _Nonnull)initWithMasks:(NSArray<LOTMask *> * _Nonnull)masks;
|
|
|
|
@property (nonatomic, strong, nullable) NSNumber *currentFrame;
|
|
|
|
@end
|