mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2024-11-23 20:19:40 +00:00
14 lines
247 B
Objective-C
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
|