// // MainMenuLayer.h // Cart Collect // // Created by iD Student Account on 7/20/11. // Copyright 2011 __MyCompanyName__. All rights reserved. // #import #import "cocos2d.h" @interface MainMenuLayer : CCLayer { } + (CCScene*)scene; - (id)init; - (void)newgame; - (void)highscores; - (void)feedback; @end 'vcs-git' href='https://git.fourisland.com/cartcollect' title='cartcollect Git repository'/>
summary refs log tree commit diff stats
blob: 854a980c987d63b0b7ef74b5fdeb9951c3d2032d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
//  GameModeSelectionDelegate.h
//  Cartographic
//
//  Created by Starla Insigna on 8/23/11.
//  Copyright 2011 Four Island. All rights reserved.
//

#import <Foundation/Foundation.h>

@class GameModeSelection;

@protocol GameModeSelectionDelegate <NSObject>

- (void)didSelectGameMode:(GameModeSelection*)gameMode;

@end