cocoaTouch/MapConfigViewController.h
changeset 3365 37ac593e9027
child 3369 c7289e42f0ee
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cocoaTouch/MapConfigViewController.h	Sun Apr 25 02:30:42 2010 +0000
@@ -0,0 +1,28 @@
+//
+//  MapConfigViewController.h
+//  HedgewarsMobile
+//
+//  Created by Vittorio on 22/04/10.
+//  Copyright 2010 __MyCompanyName__. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+#import "SDL_net.h"
+
+@interface MapConfigViewController : UIViewController {
+    TCPsocket sd, csd;
+    NSInteger maxHogs;
+    unsigned char map[128*32];
+
+    UIButton *previewButton;
+    NSString *seedCommand;
+}
+
+@property (nonatomic) NSInteger maxHogs;
+@property (nonatomic,retain) UIButton *previewButton;
+@property (nonatomic,retain) NSString *seedCommand;
+
+-(IBAction) updatePreview;
+-(void) engineProtocol:(NSInteger) port;
+
+@end