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
|