Swiftgram/lottie-ios/Classes/AnimatableProperties/LOTAnimatableShapeValue.h
2017-02-07 15:14:48 -08:00

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