summary refs log tree commit diff stats
path: root/Classes/GameOverLayer.h
blob: ea533aca52b016beca8a1a7e01ec9d61e5fddd31 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//
//  GameOverLayer.h
//  Cart Collect
//
//  Created by iD Student Account on 7/19/11.
//  Copyright 2011 __MyCompanyName__. All rights reserved.
//

#import <Foundation/Foundation.h>
#import "cocos2d.h"
#import "Cart_CollectAppDelegate.h"
#import <sqlite3.h>
#import "cocoslive.h"

@class MainMenuLayer;

@interface GameOverLayer : CCLayer <UITextFieldDelegate, UIAlertViewDelegate> {
    UILabel* scoreField;
	UITextField* textField;
    UISwitch* submitSwitch;
    UIActivityIndicatorView* activityIndicator;
    UIButton* backButton;
	int score;
}

+ (CCScene*)sceneWithScore:(int)score;
- (id)initWithScore:(int)score;
- (void)newgame;
- (void)submitScore;
- (void)exit;

@end