LOTShapeCircle.h 581 B

12345678910111213141516171819202122232425
  1. //
  2. // LOTShapeCircle.h
  3. // LottieAnimator
  4. //
  5. // Created by Brandon Withrow on 12/15/15.
  6. // Copyright © 2015 Brandon Withrow. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "LOTKeyframe.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface LOTShapeCircle : NSObject
  12. - (instancetype)initWithJSON:(NSDictionary *)jsonDictionary;
  13. @property (nonatomic, readonly) NSString *keyname;
  14. @property (nonatomic, readonly) LOTKeyframeGroup *position;
  15. @property (nonatomic, readonly) LOTKeyframeGroup *size;
  16. @property (nonatomic, readonly) BOOL reversed;
  17. @end
  18. NS_ASSUME_NONNULL_END