mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
21 lines
519 B
Objective-C
21 lines
519 B
Objective-C
//
|
|
// LOTAnimatableColorValue.h
|
|
// LottieAnimator
|
|
//
|
|
// Created by brandon_withrow on 6/23/16.
|
|
// Copyright © 2016 Brandon Withrow. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <QuartzCore/QuartzCore.h>
|
|
#import "LOTAnimatableValue.h"
|
|
#import "LOTPlatformCompat.h"
|
|
|
|
@interface LOTAnimatableColorValue : NSObject <LOTAnimatableValue>
|
|
|
|
- (instancetype)initWithColorValues:(NSDictionary *)colorValues frameRate:(NSNumber *)frameRate;
|
|
|
|
@property (nonatomic, readonly) UIColor *initialColor;
|
|
|
|
@end
|