darling-cocotron/QuartzCore/CAMediaTiming.h
Christopher Lloyd bab2e55385 QuartzCore work
2010-10-21 21:21:17 -04:00

23 lines
377 B
Objective-C

#import <QuartzCore/CABase.h>
#import <CoreFoundation/CoreFoundation.h>
@protocol CAMediaTiming
@property BOOL autoreverses;
@property CFTimeInterval beginTime;
@property CFTimeInterval duration;
@property(copy) NSString *fillMode;
@property float repeatCount;
@property CFTimeInterval repeatDuration;
@property float speed;
@property CFTimeInterval timeOffset;
@end