summary refs log tree commit diff stats
path: root/Classes/JumpGameMode.h
diff options
context:
space:
mode:
authorStarla Insigna <starla4444@gmail.com>2011-08-24 12:09:32 -0400
committerStarla Insigna <starla4444@gmail.com>2011-08-24 12:09:32 -0400
commit55c94570ae9b7a31167705350dde0a4162058f9b (patch)
tree185b9608bbdc157990aa570e449324ffb33be59d /Classes/JumpGameMode.h
parentd8f00310e486aed1ab289a0f816acec571193c32 (diff)
parent6b9c8afd0e4a49efffd504378f1db34264928250 (diff)
downloadcartcollect-55c94570ae9b7a31167705350dde0a4162058f9b.tar.gz
cartcollect-55c94570ae9b7a31167705350dde0a4162058f9b.tar.bz2
cartcollect-55c94570ae9b7a31167705350dde0a4162058f9b.zip
Merged in changes from default branch
Diffstat (limited to 'Classes/JumpGameMode.h')
-rw-r--r--Classes/JumpGameMode.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/Classes/JumpGameMode.h b/Classes/JumpGameMode.h new file mode 100644 index 0000000..9753720 --- /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 expectedAngle;
19}
20
21@end