diff options
Diffstat (limited to 'Classes/GameModeSelectionLayer.h')
-rw-r--r-- | Classes/GameModeSelectionLayer.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Classes/GameModeSelectionLayer.h b/Classes/GameModeSelectionLayer.h new file mode 100644 index 0000000..478a173 --- /dev/null +++ b/Classes/GameModeSelectionLayer.h | |||
@@ -0,0 +1,25 @@ | |||
1 | // | ||
2 | // GameModeSelectionLayer.h | ||
3 | // Cartographic | ||
4 | // | ||
5 | // Created by Starla Insigna on 8/18/11. | ||
6 | // Copyright 2011 Four Island. All rights reserved. | ||
7 | // | ||
8 | |||
9 | #import "cocos2d.h" | ||
10 | #import "TouchDelegatingView.h" | ||
11 | #import "CocosOverlayScrollView.h" | ||
12 | #import "GameModeSelectionDelegate.h" | ||
13 | |||
14 | @interface GameModeSelectionLayer : CCLayer <GameModeSelectionDelegate> { | ||
15 | NSMutableArray* gameModes; | ||
16 | TouchDelegatingView* touchDelegatingView; | ||
17 | CocosOverlayScrollView* scrollView; | ||
18 | UIPageControl* pageControl; | ||
19 | } | ||
20 | |||
21 | + (CCScene*)scene; | ||
22 | - (id)init; | ||
23 | - (void)mainmenu; | ||
24 | |||
25 | @end | ||