mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-16 10:30:08 +00:00
18 lines
361 B
Objective-C
18 lines
361 B
Objective-C
//
|
|
// LOTAnimatableValue.h
|
|
// LottieAnimator
|
|
//
|
|
// Created by brandon_withrow on 7/19/16.
|
|
// Copyright © 2016 Brandon Withrow. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <QuartzCore/QuartzCore.h>
|
|
|
|
@protocol LOTAnimatableValue <NSObject>
|
|
|
|
- (CAKeyframeAnimation *)animationForKeyPath:(NSString *)keypath;
|
|
- (BOOL)hasAnimation;
|
|
|
|
@end
|