summary refs log blame commit diff stats
path: root/Classes/GameOverScene.h
blob: a91286e2a688cd5a4bb219d19664373089fd63cc (plain) (tree)
1
2
3
4
5
6
7
8
9
10








                                                          
 

                                                                               




                                               
                       
 
                                                                         



                    
//
//  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"

@interface GameOverScene : CCScene <UITextFieldDelegate, UIAlertViewDelegate> {
    CCLayer* theLayer;
    UIView* movingLayer;
    UILabel* scoreField;
	UITextField* textField;
    UISwitch* submitSwitch;
    UIActivityIndicatorView* activityIndicator;
    UIButton* backButton;
	int score;
    NSString* gameMode;
}

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

@end