summary refs log tree commit diff stats
path: root/Classes/GameOverLayer.h
diff options
context:
space:
mode:
Diffstat (limited to 'Classes/GameOverLayer.h')
-rwxr-xr-xClasses/GameOverLayer.h27
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