summary refs log tree commit diff stats
path: root/Classes/TutorialMode.h
blob: 697c688249dd9a89c3571378910b79529bd4f0b0 (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
//
//  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:(int)objectType;
- (FallingObject*)dropRandomItem;
- (void)randomlyAddObject:(ccTime)dt;

@end