// // LOTShapeFill.h // LottieAnimator // // Created by Brandon Withrow on 12/15/15. // Copyright © 2015 Brandon Withrow. All rights reserved. // #import #import "LOTKeyframe.h" @interface LOTShapeFill : NSObject - (instancetype)initWithJSON:(NSDictionary *)jsonDictionary; @property (nonatomic, readonly) BOOL fillEnabled; @property (nonatomic, readonly) LOTKeyframeGroup *color; @property (nonatomic, readonly) LOTKeyframeGroup *opacity; @property (nonatomic, readonly) BOOL evenOddFillRule; @end