mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2024-11-23 12:09:51 +00:00
36 lines
511 B
Objective-C
36 lines
511 B
Objective-C
#import <QuartzCore/CAAnimation.h>
|
|
|
|
@implementation CABasicAnimation
|
|
|
|
- fromValue {
|
|
return _fromValue;
|
|
}
|
|
|
|
- (void) setFromValue: value {
|
|
value = [value retain];
|
|
[_fromValue release];
|
|
_fromValue = value;
|
|
}
|
|
|
|
- toValue {
|
|
return _toValue;
|
|
}
|
|
|
|
- (void) setToValue: value {
|
|
value = [value retain];
|
|
[_toValue release];
|
|
_toValue = value;
|
|
}
|
|
|
|
- byValue {
|
|
return _byValue;
|
|
}
|
|
|
|
- (void) setByValue: value {
|
|
value = [value retain];
|
|
[_byValue release];
|
|
_byValue = value;
|
|
}
|
|
|
|
@end
|