blob: 478a173df73a36436df2ca252ebbec654e6caec0 (
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
|
//
// GameModeSelectionLayer.h
// Cartographic
//
// Created by Starla Insigna on 8/18/11.
// Copyright 2011 Four Island. All rights reserved.
//
#import "cocos2d.h"
#import "TouchDelegatingView.h"
#import "CocosOverlayScrollView.h"
#import "GameModeSelectionDelegate.h"
@interface GameModeSelectionLayer : CCLayer <GameModeSelectionDelegate> {
NSMutableArray* gameModes;
TouchDelegatingView* touchDelegatingView;
CocosOverlayScrollView* scrollView;
UIPageControl* pageControl;
}
+ (CCScene*)scene;
- (id)init;
- (void)mainmenu;
@end
|