diff -r e5403e2bf02c -r 37ac593e9027 cocoaTouch/MapConfigViewController.h --- /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 +#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