summary refs log tree commit diff stats
path: root/Classes/GameModeSelection.h
diff options
context:
space:
mode:
Diffstat (limited to 'Classes/GameModeSelection.h')
-rw-r--r--Classes/GameModeSelection.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/Classes/GameModeSelection.h b/Classes/GameModeSelection.h new file mode 100644 index 0000000..aadbf36 --- /dev/null +++ b/Classes/GameModeSelection.h
@@ -0,0 +1,30 @@
1//
2// GameModeSelection.h
3// Cartographic
4//
5// Created by Starla Insigna on 8/18/11.
6// Copyright 2011 Four Island. All rights reserved.
7//
8
9#import "cocos2d.h"
10
11@interface GameModeSelection : CCNode {
12 NSString* name;
13 NSString* location;
14 BOOL unlocked;
15 int highscore;
16 NSString* unlockCondition;
17
18 CCLabelBMFont* nameLabel;
19 CCSprite* picture;
20 CCLabelBMFont* otherLabel;
21}
22
23@property (readonly) NSString* name;
24@property (readonly) NSString* location;
25@property (readonly) BOOL unlocked;
26@property (nonatomic,assign) int highscore;
27@property (nonatomic,retain) NSString* unlockCondition;
28- (id)initWithName:(NSString*)name location:(NSString*)location filename:(NSString*)filename unlocked:(BOOL)unlocked;
29
30@end