about summary refs log tree commit diff stats
path: root/.gitattributes
blob: dfe0770424b2a19faf507a501ebfc23be8f54e7b (plain) (blame)
1
2
# Auto detect text files and perform LF normalization
* text=auto
: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
//
//  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 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