mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-13 15:48:18 +00:00
24 lines
363 B
Objective-C
24 lines
363 B
Objective-C
//
|
|
// ASImageNode+AnimatedImage.h
|
|
// Pods
|
|
//
|
|
// Created by Garrett Moon on 3/22/16.
|
|
//
|
|
//
|
|
|
|
#import "ASImageNode.h"
|
|
|
|
#import "ASImageProtocols.h"
|
|
|
|
@interface ASImageNode ()
|
|
|
|
@property (atomic, assign) BOOL animatedImagePaused;
|
|
|
|
@end
|
|
|
|
@interface ASImageNode (AnimatedImage)
|
|
|
|
@property (nullable, atomic, strong) id <ASAnimatedImageProtocol> animatedImage;
|
|
|
|
@end
|