equal
deleted
inserted
replaced
|
1 // |
|
2 // gameSetup.h |
|
3 // hwengine |
|
4 // |
|
5 // Created by Vittorio on 10/01/10. |
|
6 // Copyright 2010 __MyCompanyName__. All rights reserved. |
|
7 // |
|
8 |
|
9 #import <Foundation/Foundation.h> |
|
10 |
|
11 |
|
12 @interface GameSetup : NSObject { |
|
13 NSLocale *locale; |
|
14 BOOL engineProtocolStarted; |
|
15 } |
|
16 |
|
17 |
|
18 @property (nonatomic, retain) NSLocale *locale; |
|
19 @property (nonatomic) BOOL engineProtocolStarted; |
|
20 |
|
21 -(void) setArgsForLocalPlay; |
|
22 -(void) engineProtocol; |
|
23 -(void) startThread: (NSString *)selector; |
|
24 |
|
25 @end |
|
26 |