From 9cd57b731ab1c666d4a1cb725538fdc137763d12 Mon Sep 17 00:00:00 2001 From: Starla Insigna Date: Sat, 30 Jul 2011 11:19:14 -0400 Subject: Initial commit (version 0.2.1) --- Classes/Highscore.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 Classes/Highscore.h (limited to 'Classes/Highscore.h') 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 @@ +// +// Highscore.h +// Cart Collect +// +// Created by iD Student Account on 7/20/11. +// Copyright 2011 __MyCompanyName__. All rights reserved. +// + +#import +#import +#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 -- cgit 1.4.1