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

#import <Foundation/Foundation.h>
#import <sqlite3.h>
#import "Cart_CollectAppDelegate.h"
#import "cocoslive.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