cocoaTouch/GameSetup.h
changeset 2693 3207e0eacd43
child 2694 dcd248e04f3d
--- /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 <Foundation/Foundation.h>
+
+
+@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
+