// // GameOverLayer.h // Cart Collect // // Created by iD Student Account on 7/19/11. // Copyright 2011 __MyCompanyName__. All rights reserved. // #import #import "cocos2d.h" #import "Cart_CollectAppDelegate.h" #import #import "cocoslive.h" @class MainMenuLayer; @interface GameOverLayer : CCLayer { 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