mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-16 02:20:07 +00:00
22 lines
605 B
Objective-C
22 lines
605 B
Objective-C
//
|
|
// LOTRectShapeLayer.h
|
|
// LottieAnimator
|
|
//
|
|
// Created by brandon_withrow on 7/20/16.
|
|
// Copyright © 2016 Brandon Withrow. All rights reserved.
|
|
//
|
|
|
|
#import <QuartzCore/QuartzCore.h>
|
|
#import "LOTModels.h"
|
|
#import "LOTAnimatableLayer.h"
|
|
|
|
@interface LOTRectShapeLayer : LOTAnimatableLayer
|
|
|
|
- (instancetype)initWithRectShape:(LOTShapeRectangle *)rectShape
|
|
fill:(LOTShapeFill *)fill
|
|
stroke:(LOTShapeStroke *)stroke
|
|
transform:(LOTShapeTransform *)transform
|
|
withDuration:(NSTimeInterval)duration;
|
|
|
|
@end
|