// // 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 { NSMutableArray* gameModes; TouchDelegatingView* touchDelegatingView; CocosOverlayScrollView* scrollView; UIPageControl* pageControl; } + (CCScene*)scene; - (id)init; - (void)mainmenu; @end