cocoaTouch/GameSetup.h
changeset 2694 dcd248e04f3d
parent 2693 3207e0eacd43
child 2696 41aa7b56c17b
equal deleted inserted replaced
2693:3207e0eacd43 2694:dcd248e04f3d
     8 
     8 
     9 #import <Foundation/Foundation.h>
     9 #import <Foundation/Foundation.h>
    10 
    10 
    11 
    11 
    12 @interface GameSetup : NSObject {
    12 @interface GameSetup : NSObject {
    13 	NSLocale *locale;
    13 	NSString *localeString;
       
    14 	NSDictionary *systemSettings;
    14 	BOOL engineProtocolStarted;
    15 	BOOL engineProtocolStarted;
    15 }
    16 }
    16 
    17 
    17 
    18 
    18 @property (nonatomic, retain) NSLocale *locale;
    19 @property (nonatomic, retain) NSString *localeString;
    19 @property (nonatomic) BOOL engineProtocolStarted;
    20 @property (retain) NSDictionary *systemSettings;
    20 
    21 
    21 -(void) setArgsForLocalPlay;
    22 -(void) setArgsForLocalPlay;
    22 -(void) engineProtocol;
    23 -(void) engineProtocol;
    23 -(void) startThread: (NSString *)selector;
    24 -(void) startThread: (NSString *)selector;
    24 
    25