summary refs log tree commit diff stats
path: root/Classes/GameLayer.h
blob: 128cbf2f565ff0ea7417b4f1e5e9bc3f41a1be08 (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
27
28
29
30
31
//
//  GameLayer.h
//  Cart Collect
//
//  Created by iD Student Account on 7/18/11.
//  Copyright 2011 __MyCompanyName__. All rights reserved.
//

#import <Foundation/Foundation.h>
#import "cocos2d.h"
#import "TutorialBubble.h"
#import "GameMode.h"

@interface GameLayer : GameMode {
	CCLabelBMFont* scoreLabel;
	CCLabelBMFont* livesLabel;
	float addSpeed;
    TutorialBubble* currentTutorial;
    
    CCLayerColor* shadedLayer;
    CCLayer* pauseLayer;
}

@property (nonatomic,retain) TutorialBubble* currentTutorial;
- (id)init;
- (void)pause;
- (void)unpause;
- (void)mainmenu;
- (void)endTutorial;

@end