Swiftgram/lottie-ios/Classes/AnimatableProperties/LOTAnimatableBoundsValue.h
2017-07-28 14:46:27 -07:00

22 lines
576 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"
#import "LOTKeyframe.h"
@interface LOTAnimatableBoundsValue : NSObject <LOTAnimatableValue>
- (instancetype)initWithSizeValues:(NSDictionary *)sizeValue frameRate:(NSNumber *)frameRate;
@property (nonatomic, readonly) CGRect initialBounds;
@property (nonatomic, readonly) LOTKeyframeGroup *keyframeGroup;
@end