summary refs log tree commit diff stats
path: root/Classes/Highscore.h
blob: bc6a8fb76df2277ab9584c78f10f1829a1c67163 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
//  Highscore.h
//  Cart Collect
//
//  Created by iD Student Account on 7/20/11.
//  Copyright 2011 __MyCompanyName__. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface Highscore : NSObject {
	NSString* name;
	int score;
	NSDate* date;
}

@property (readonly) NSString* name;
@property (readonly) int score;
@property (readonly) NSDate* date;
- (id)initWithName:(NSString*)name score:(int)score date:(NSDate*)date;

@end