summary refs log tree commit diff stats
path: root/Classes/TutorialMode.h
diff options
context:
space:
mode:
Diffstat (limited to 'Classes/TutorialMode.h')
-rw-r--r--Classes/TutorialMode.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/Classes/TutorialMode.h b/Classes/TutorialMode.h index 697c688..160e6bc 100644 --- a/Classes/TutorialMode.h +++ b/Classes/TutorialMode.h
@@ -14,9 +14,16 @@
14 TutorialBubble* currentTutorial; 14 TutorialBubble* currentTutorial;
15 BOOL showedDeathBubble; 15 BOOL showedDeathBubble;
16 int randomItemsDropped; 16 int randomItemsDropped;
17
18 int score;
19 int lives;
20 CCLabelBMFont* scoreLabel;
21 CCLabelBMFont* livesLabel;
17} 22}
18 23
19@property (nonatomic,retain) TutorialBubble* currentTutorial; 24@property (nonatomic,retain) TutorialBubble* currentTutorial;
25@property (nonatomic) int score;
26@property (nonatomic) int lives;
20- (void)endTutorial; 27- (void)endTutorial;
21- (FallingObject*)dropSpecificItem:(int)objectType; 28- (FallingObject*)dropSpecificItem:(int)objectType;
22- (FallingObject*)dropRandomItem; 29- (FallingObject*)dropRandomItem;