diff options
Diffstat (limited to 'Classes/JumpGameMode.h')
-rw-r--r-- | Classes/JumpGameMode.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Classes/JumpGameMode.h b/Classes/JumpGameMode.h new file mode 100644 index 0000000..7b7dff4 --- /dev/null +++ b/Classes/JumpGameMode.h | |||
@@ -0,0 +1,21 @@ | |||
1 | // | ||
2 | // JumpGameMode.h | ||
3 | // Cart Collect | ||
4 | // | ||
5 | // Created by Starla Insigna on 8/17/11. | ||
6 | // Copyright 2011 Four Island. All rights reserved. | ||
7 | // | ||
8 | |||
9 | #import "GameMode.h" | ||
10 | |||
11 | @interface JumpGameMode : GameMode <CCStandardTouchDelegate> { | ||
12 | CCSprite* water; | ||
13 | int waterTick; | ||
14 | BOOL wave; | ||
15 | CGPoint gestureStartPoint; | ||
16 | int jumpTick; | ||
17 | BOOL jump; | ||
18 | float swipeVarianceModifer; | ||
19 | } | ||
20 | |||
21 | @end | ||