cocoaTouch/GameSetup.h
changeset 2693 3207e0eacd43
child 2694 dcd248e04f3d
equal deleted inserted replaced
2692:ce9992075118 2693:3207e0eacd43
       
     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