Swiftgram/lottie-ios/Classes/Models/LOTShapeRectangle.h
2017-07-28 17:11:10 -07:00

22 lines
552 B
Objective-C

//
// LOTShapeRectangle.h
// LottieAnimator
//
// Created by Brandon Withrow on 12/15/15.
// Copyright © 2015 Brandon Withrow. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "LOTKeyframe.h"
@interface LOTShapeRectangle : NSObject
- (instancetype)initWithJSON:(NSDictionary *)jsonDictionary;
@property (nonatomic, readonly) LOTKeyframeGroup *position;
@property (nonatomic, readonly) LOTKeyframeGroup *size;
@property (nonatomic, readonly) LOTKeyframeGroup *cornerRadius;
@property (nonatomic, readonly) BOOL reversed;
@end