diff options
Diffstat (limited to 'Classes/GameLayer.h')
-rwxr-xr-x | Classes/GameLayer.h | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/Classes/GameLayer.h b/Classes/GameLayer.h deleted file mode 100755 index 128cbf2..0000000 --- a/Classes/GameLayer.h +++ /dev/null | |||
@@ -1,31 +0,0 @@ | |||
1 | // | ||
2 | // GameLayer.h | ||
3 | // Cart Collect | ||
4 | // | ||
5 | // Created by iD Student Account on 7/18/11. | ||
6 | // Copyright 2011 __MyCompanyName__. All rights reserved. | ||
7 | // | ||
8 | |||
9 | #import <Foundation/Foundation.h> | ||
10 | #import "cocos2d.h" | ||
11 | #import "TutorialBubble.h" | ||
12 | #import "GameMode.h" | ||
13 | |||
14 | @interface GameLayer : GameMode { | ||
15 | CCLabelBMFont* scoreLabel; | ||
16 | CCLabelBMFont* livesLabel; | ||
17 | float addSpeed; | ||
18 | TutorialBubble* currentTutorial; | ||
19 | |||
20 | CCLayerColor* shadedLayer; | ||
21 | CCLayer* pauseLayer; | ||
22 | } | ||
23 | |||
24 | @property (nonatomic,retain) TutorialBubble* currentTutorial; | ||
25 | - (id)init; | ||
26 | - (void)pause; | ||
27 | - (void)unpause; | ||
28 | - (void)mainmenu; | ||
29 | - (void)endTutorial; | ||
30 | |||
31 | @end | ||