summary refs log tree commit diff stats
path: root/Classes/TutorialMode.h
diff options
context:
space:
mode:
authorStarla Insigna <starla4444@gmail.com>2013-01-04 16:26:04 -0500
committerStarla Insigna <starla4444@gmail.com>2013-01-04 16:26:04 -0500
commit7eb543b37f42f708611f969de2d813a5457c54d8 (patch)
treecb950c195f5b3c4fd4083aa8c5c843a2e0684e60 /Classes/TutorialMode.h
parent8123ad65be46e9b7243d3429dd083638eece0127 (diff)
downloadcartcollect-7eb543b37f42f708611f969de2d813a5457c54d8.tar.gz
cartcollect-7eb543b37f42f708611f969de2d813a5457c54d8.tar.bz2
cartcollect-7eb543b37f42f708611f969de2d813a5457c54d8.zip
Created score bar
Closes #190
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;