summary refs log tree commit diff stats
path: root/Classes/Highscore.h
diff options
context:
space:
mode:
Diffstat (limited to 'Classes/Highscore.h')
-rwxr-xr-xClasses/Highscore.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/Classes/Highscore.h b/Classes/Highscore.h new file mode 100755 index 0000000..4cab75f --- /dev/null +++ b/Classes/Highscore.h
@@ -0,0 +1,25 @@
1//
2// Highscore.h
3// Cart Collect
4//
5// Created by iD Student Account on 7/20/11.
6// Copyright 2011 __MyCompanyName__. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import <sqlite3.h>
11#import "Cart_CollectAppDelegate.h"
12#import "cocoslive.h"
13
14@interface Highscore : NSObject {
15 NSString* name;
16 int score;
17 NSDate* date;
18}
19
20@property (readonly) NSString* name;
21@property (readonly) int score;
22@property (readonly) NSDate* date;
23- (id)initWithName:(NSString*)name score:(int)score date:(NSDate*)date;
24
25@end