diff options
Diffstat (limited to 'Classes/ZoomFadeTransition.h')
-rw-r--r-- | Classes/ZoomFadeTransition.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Classes/ZoomFadeTransition.h b/Classes/ZoomFadeTransition.h new file mode 100644 index 0000000..856974f --- /dev/null +++ b/Classes/ZoomFadeTransition.h | |||
@@ -0,0 +1,19 @@ | |||
1 | // | ||
2 | // ZoomFadeTransition.h | ||
3 | // Cartographic | ||
4 | // | ||
5 | // Created by Starla Insigna on 9/5/11. | ||
6 | // Copyright (c) 2011 Four Island. All rights reserved. | ||
7 | // | ||
8 | |||
9 | #import "cocos2d.h" | ||
10 | |||
11 | @interface ZoomFadeTransition : CCTransitionScene { | ||
12 | CGPoint endPosition_; | ||
13 | float endScale_; | ||
14 | } | ||
15 | |||
16 | + (id)transitionWithDuration:(ccTime)t scene:(CCScene *)s position:(CGPoint)position; | ||
17 | - (id)initWithDuration:(ccTime)t scene:(CCScene *)s position:(CGPoint)position; | ||
18 | |||
19 | @end | ||