LOTPointInterpolator.h 439 B

1234567891011121314151617181920212223
  1. //
  2. // LOTPointInterpolator.h
  3. // Lottie
  4. //
  5. // Created by brandon_withrow on 7/12/17.
  6. // Copyright © 2017 Airbnb. All rights reserved.
  7. //
  8. #import "LOTValueInterpolator.h"
  9. #import "LOTValueDelegate.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface LOTPointInterpolator : LOTValueInterpolator
  12. - (CGPoint)pointValueForFrame:(NSNumber *)frame;
  13. @property (nonatomic, weak, nullable) id<LOTPointValueDelegate> delegate;
  14. @end
  15. NS_ASSUME_NONNULL_END