summary refs log tree commit diff stats
path: root/Classes/GameModeSelection.h
blob: ec6d5adebe17d9d41e1f782bd85656a66cd24cd8 (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
//
//  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<GameModeSelectionDelegate> delegate;
}

@property (readonly) GameModeInfo* gameMode;
@property (nonatomic,retain) id<GameModeSelectionDelegate> delegate;
+ (id)selectionWithGameModeInfo:(GameModeInfo*)m_gameMode;
- (id)initWithGameModeInfo:(GameModeInfo*)m_gameMode;
- (void)buttonTapped;

@end