blob: 17b0c7f413f503af11aa8c45859ff20689554f8d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
//
// TutorialMode.h
// Cart Collect
//
// Created by Starla Insigna on 8/10/11.
// Copyright 2011 Four Island. All rights reserved.
//
#import "GameMode.h"
#import "TutorialBubble.h"
#import "FallingObjectDelegate.h"
@interface TutorialMode : GameMode <FallingObjectDelegate> {
TutorialBubble* currentTutorial;
BOOL showedDeathBubble;
int randomItemsDropped;
}
@property (nonatomic,retain) TutorialBubble* currentTutorial;
- (void)endTutorial;
- (FallingObject*)dropSpecificItem:(FallingObject*)item;
- (FallingObject*)dropRandomItem;
- (void)randomlyAddObject:(ccTime)dt;
- (void)skipTutorial;
@end
|