mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
20 lines
510 B
Objective-C
20 lines
510 B
Objective-C
//
|
|
// LOTAnimatableShapeValue.h
|
|
// LottieAnimator
|
|
//
|
|
// Created by brandon_withrow on 6/23/16.
|
|
// Copyright © 2016 Brandon Withrow. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "LOTPlatformCompat.h"
|
|
#import "LOTAnimatableValue.h"
|
|
|
|
@interface LOTAnimatableShapeValue : NSObject <LOTAnimatableValue>
|
|
|
|
- (instancetype)initWithShapeValues:(NSDictionary *)shapeValues frameRate:(NSNumber *)frameRate closed:(BOOL)closed;
|
|
|
|
@property (nonatomic, readonly) UIBezierPath *initialShape;
|
|
|
|
@end
|