mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-08 13:42:51 +00:00
16 lines
374 B
Objective-C
16 lines
374 B
Objective-C
//
|
|
// ASImageNode+AnimatedImage.h
|
|
// AsyncDisplayKit
|
|
//
|
|
// Created by Garrett Moon on 3/22/16.
|
|
// Copyright © 2016 Facebook. All rights reserved.
|
|
//
|
|
|
|
#import "ASImageNode.h"
|
|
#import "ASImageProtocols.h"
|
|
|
|
@interface ASImageNode ()
|
|
@property (atomic, assign) BOOL animatedImagePaused;
|
|
@property (nullable, atomic, strong) id <ASAnimatedImageProtocol> animatedImage;
|
|
@end
|