diff options
author | Starla Insigna <starla4444@gmail.com> | 2011-08-15 14:47:39 -0400 |
---|---|---|
committer | Starla Insigna <starla4444@gmail.com> | 2011-08-15 14:47:39 -0400 |
commit | c55c499656ed089df63b049979487e9af9d109d6 (patch) | |
tree | a07f86c4630ad35e10304c50c6ef562f56424c91 /Classes/GameOverLayer.h | |
parent | 4457e0ce5099a81f8e6a366e353561b886725532 (diff) | |
download | cartcollect-c55c499656ed089df63b049979487e9af9d109d6.tar.gz cartcollect-c55c499656ed089df63b049979487e9af9d109d6.tar.bz2 cartcollect-c55c499656ed089df63b049979487e9af9d109d6.zip |
Fixed game over transition
Fixes #189
Diffstat (limited to 'Classes/GameOverLayer.h')
-rwxr-xr-x | Classes/GameOverLayer.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/Classes/GameOverLayer.h b/Classes/GameOverLayer.h deleted file mode 100755 index c800e82..0000000 --- a/Classes/GameOverLayer.h +++ /dev/null | |||
@@ -1,27 +0,0 @@ | |||
1 | // | ||
2 | // GameOverLayer.h | ||
3 | // Cart Collect | ||
4 | // | ||
5 | // Created by iD Student Account on 7/19/11. | ||
6 | // Copyright 2011 __MyCompanyName__. All rights reserved. | ||
7 | // | ||
8 | |||
9 | #import <Foundation/Foundation.h> | ||
10 | #import "cocos2d.h" | ||
11 | |||
12 | @interface GameOverLayer : CCLayer <UITextFieldDelegate, UIAlertViewDelegate> { | ||
13 | UILabel* scoreField; | ||
14 | UITextField* textField; | ||
15 | UISwitch* submitSwitch; | ||
16 | UIActivityIndicatorView* activityIndicator; | ||
17 | UIButton* backButton; | ||
18 | int score; | ||
19 | } | ||
20 | |||
21 | + (CCScene*)sceneWithScore:(int)score; | ||
22 | - (id)initWithScore:(int)score; | ||
23 | - (void)newgame; | ||
24 | - (void)submitScore; | ||
25 | - (void)exit; | ||
26 | |||
27 | @end | ||