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

14 lines
247 B
Objective-C

#import <QuartzCore/CAPropertyAnimation.h>
@interface CABasicAnimation : CAPropertyAnimation {
id _fromValue;
id _toValue;
id _byValue;
}
@property(retain) id fromValue;
@property(retain) id toValue;
@property(retain) id byValue;
@end