darling-cocotron/QuartzCore/CAAnimationGroup.m
2020-05-12 17:04:15 -04:00

16 lines
259 B
Objective-C

#import <QuartzCore/CAAnimationGroup.h>
@implementation CAAnimationGroup
- (NSArray *) animations {
return _animations;
}
- (void) setAnimations: (NSArray *) value {
value = [value copy];
[_animations release];
_animations = value;
}
@end