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.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/Classes/TutorialMode.h b/Classes/TutorialMode.h new file mode 100644 index 0000000..17b0c7f --- /dev/null +++ b/Classes/TutorialMode.h
@@ -0,0 +1,26 @@
1//
2// TutorialMode.h
3// Cart Collect
4//
5// Created by Starla Insigna on 8/10/11.
6// Copyright 2011 Four Island. All rights reserved.
7//
8
9#import "GameMode.h"
10#import "TutorialBubble.h"
11#import "FallingObjectDelegate.h"
12
13@interface TutorialMode : GameMode <FallingObjectDelegate> {
14 TutorialBubble* currentTutorial;
15 BOOL showedDeathBubble;
16 int randomItemsDropped;
17}
18
19@property (nonatomic,retain) TutorialBubble* currentTutorial;
20- (void)endTutorial;
21- (FallingObject*)dropSpecificItem:(FallingObject*)item;
22- (FallingObject*)dropRandomItem;
23- (void)randomlyAddObject:(ccTime)dt;
24- (void)skipTutorial;
25
26@end