Swiftgram/AsyncDisplayKit/ASImageNode+AnimatedImagePrivate.h
Garrett Moon beba9031ef Expose public properties properly
Reviewers: rmalik

Reviewed By: rmalik

Differential Revision: https://phabricator.pinadmin.com/D82227
2016-04-13 14:23:02 -07:00

24 lines
433 B
Objective-C

//
// ASImageNode+AnimatedImagePrivate.h
// Pods
//
// Created by Garrett Moon on 3/30/16.
//
//
@interface ASImageNode ()
{
ASDN::RecursiveMutex _animatedImageLock;
ASDN::Mutex _displayLinkLock;
ASAnimatedImage *_animatedImage;
CADisplayLink *_displayLink;
//accessed on main thread only
CFTimeInterval _playHead;
NSUInteger _playedLoops;
}
@property (atomic, assign) CFTimeInterval lastDisplayLinkFire;
@end