blob: 638048365e8231d4865865f85f0d6d69a18dfa68 (
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:(FallingObject*)item;
- (FallingObject*)dropRandomItem;
- (void)randomlyAddObject:(ccTime)dt;
@end
|