Merge pull request #10 from gunyarakun/fix-invalid-return
[cocotron.git] / QuartzCore / CATransition.h
blob5b3a36fd63700ea912e69cc0e9d97dd610950ccb
1 #import <QuartzCore/CAAnimation.h>
3 @interface CATransition : CAAnimation {
4 NSString *_type;
5 NSString *_subtype;
6 float _startProgress;
7 float _endProgress;
10 @property(copy) NSString *type;
11 @property(copy) NSString *subtype;
12 @property float startProgress;
13 @property float endProgress;
15 @end