LOTNumberInterpolator.h 475 B

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