summary refs log tree commit diff stats
path: root/Classes/GameOverScene.h
diff options
context:
space:
mode:
authorStarla Insigna <starla4444@gmail.com>2011-09-04 11:17:44 -0400
committerStarla Insigna <starla4444@gmail.com>2011-09-04 11:17:44 -0400
commit339f8e2cb2fce18f6d32b3881a5cd390c0be488e (patch)
treecb17c635d664838259e591f4b345ae6349931d49 /Classes/GameOverScene.h
parent9f4bf94a763afba795fb991006081505c3ae466b (diff)
downloadcartcollect-339f8e2cb2fce18f6d32b3881a5cd390c0be488e.tar.gz
cartcollect-339f8e2cb2fce18f6d32b3881a5cd390c0be488e.tar.bz2
cartcollect-339f8e2cb2fce18f6d32b3881a5cd390c0be488e.zip
Implemented Jump mode (BETA) jump
Dear god this is beta. I think I'll release a build for the testers soon so I can see what people think and then hammer out the bugs.

Refs #204
Diffstat (limited to 'Classes/GameOverScene.h')
-rwxr-xr-xClasses/GameOverScene.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Classes/GameOverScene.h b/Classes/GameOverScene.h index ef63aa7..a91286e 100755 --- a/Classes/GameOverScene.h +++ b/Classes/GameOverScene.h
@@ -18,10 +18,11 @@
18 UIActivityIndicatorView* activityIndicator; 18 UIActivityIndicatorView* activityIndicator;
19 UIButton* backButton; 19 UIButton* backButton;
20 int score; 20 int score;
21 NSString* gameMode;
21} 22}
22 23
23+ (GameOverScene*)sceneWithScore:(int)score; 24+ (GameOverScene*)sceneWithScore:(int)score gameMode:(NSString*)gameMode;
24- (id)initWithScore:(int)score; 25- (id)initWithScore:(int)score gameMode:(NSString*)gameMode;
25- (void)newgame; 26- (void)newgame;
26- (void)submitScore; 27- (void)submitScore;
27- (void)exit; 28- (void)exit;