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

20 lines
487 B
Objective-C

//
// LOTAnimatableBoundsValue.h
// LottieAnimator
//
// Created by brandon_withrow on 7/20/16.
// Copyright © 2016 Brandon Withrow. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <QuartzCore/QuartzCore.h>
#import "LOTAnimatableValue.h"
@interface LOTAnimatableBoundsValue : NSObject <LOTAnimatableValue>
- (instancetype)initWithSizeValues:(NSDictionary *)sizeValue frameRate:(NSNumber *)frameRate;
@property (nonatomic, readonly) CGRect initialBounds;
@end