// // GameModeSelection.h // Cartographic // // Created by Starla Insigna on 8/18/11. // Copyright 2011 Four Island. All rights reserved. // #import "cocos2d.h" #import "GameModeSelectionDelegate.h" #import "GameModeInfo.h" @interface GameModeSelection : CCMenuItem { GameModeInfo* gameMode; id delegate; } @property (readonly) GameModeInfo* gameMode; @property (nonatomic,retain) id delegate; + (id)selectionWithGameModeInfo:(GameModeInfo*)m_gameMode; - (id)initWithGameModeInfo:(GameModeInfo*)m_gameMode; - (void)buttonTapped; @end