mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
22 lines
597 B
Objective-C
22 lines
597 B
Objective-C
//
|
|
// LOTShapeLayerView.h
|
|
// LottieAnimator
|
|
//
|
|
// Created by Brandon Withrow on 7/13/16.
|
|
// Copyright © 2016 Brandon Withrow. All rights reserved.
|
|
//
|
|
|
|
#import "LOTAnimatableLayer.h"
|
|
#import "LOTModels.h"
|
|
|
|
@interface LOTShapeLayerView : LOTAnimatableLayer
|
|
|
|
- (instancetype)initWithShape:(LOTShapePath *)shape
|
|
fill:(LOTShapeFill *)fill
|
|
stroke:(LOTShapeStroke *)stroke
|
|
trim:(LOTShapeTrimPath *)trim
|
|
transform:(LOTShapeTransform *)transform
|
|
withDuration:(NSTimeInterval)duration;
|
|
|
|
@end
|