mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 11:30:04 +00:00
22 lines
423 B
Objective-C
22 lines
423 B
Objective-C
//
|
|
// LOTPathInterpolator.h
|
|
// Lottie
|
|
//
|
|
// Created by brandon_withrow on 7/13/17.
|
|
// Copyright © 2017 Airbnb. All rights reserved.
|
|
//
|
|
|
|
#import "LOTValueInterpolator.h"
|
|
#import "LOTPlatformCompat.h"
|
|
#import "LOTBezierPath.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface LOTPathInterpolator : LOTValueInterpolator
|
|
|
|
- (LOTBezierPath *)pathForFrame:(NSNumber *)frame cacheLengths:(BOOL)cacheLengths;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|