blob: ef63aa7fd3d124075c4d79092ff2f47deecb7401 (
plain) (
tree)
|
|
//
// 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;
}
+ (GameOverScene*)sceneWithScore:(int)score;
- (id)initWithScore:(int)score;
- (void)newgame;
- (void)submitScore;
- (void)exit;
@end
|