mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
21 lines
409 B
Objective-C
21 lines
409 B
Objective-C
//
|
|
// LOTAnimationCache.h
|
|
// Lottie
|
|
//
|
|
// Created by Brandon Withrow on 1/9/17.
|
|
// Copyright © 2017 Brandon Withrow. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class LOTComposition;
|
|
|
|
@interface LOTAnimationCache : NSObject
|
|
|
|
+ (instancetype)sharedCache;
|
|
|
|
- (void)addAnimation:(LOTComposition *)animation forKey:(NSString *)key;
|
|
- (LOTComposition *)animationForKey:(NSString *)key;
|
|
|
|
@end
|