diff -r ce9992075118 -r 3207e0eacd43 cocoaTouch/GameSetup.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cocoaTouch/GameSetup.h Wed Jan 13 09:41:35 2010 +0000 @@ -0,0 +1,26 @@ +// +// gameSetup.h +// hwengine +// +// Created by Vittorio on 10/01/10. +// Copyright 2010 __MyCompanyName__. All rights reserved. +// + +#import + + +@interface GameSetup : NSObject { + NSLocale *locale; + BOOL engineProtocolStarted; +} + + +@property (nonatomic, retain) NSLocale *locale; +@property (nonatomic) BOOL engineProtocolStarted; + +-(void) setArgsForLocalPlay; +-(void) engineProtocol; +-(void) startThread: (NSString *)selector; + +@end +