mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-17 11:00:07 +00:00
20 lines
414 B
Objective-C
20 lines
414 B
Objective-C
//
|
|
// LOTMaskLayer.h
|
|
// LottieAnimator
|
|
//
|
|
// Created by brandon_withrow on 7/22/16.
|
|
// Copyright © 2016 Brandon Withrow. All rights reserved.
|
|
//
|
|
|
|
#import "LOTAnimatableLayer.h"
|
|
#import "LOTModels.h"
|
|
|
|
@interface LOTMaskLayer : LOTAnimatableLayer
|
|
|
|
- (instancetype)initWithMasks:(NSArray<LOTMask *> *)masks inComposition:(LOTComposition *)comp;
|
|
|
|
@property (nonatomic, readonly) NSArray<LOTMask *> *masks;
|
|
|
|
|
|
@end
|