LOTTrimPathNode.h 409 B

123456789101112131415161718
  1. //
  2. // LOTTrimPathNode.h
  3. // Lottie
  4. //
  5. // Created by brandon_withrow on 7/21/17.
  6. // Copyright © 2017 Airbnb. All rights reserved.
  7. //
  8. #import "LOTAnimatorNode.h"
  9. #import "LOTShapeTrimPath.h"
  10. @interface LOTTrimPathNode : LOTAnimatorNode
  11. - (instancetype _Nonnull)initWithInputNode:(LOTAnimatorNode *_Nullable)inputNode
  12. trimPath:(LOTShapeTrimPath *_Nonnull)trimPath;
  13. @end