cocoaTouch/MapConfigViewController.h
changeset 3365 37ac593e9027
child 3369 c7289e42f0ee
equal deleted inserted replaced
3364:e5403e2bf02c 3365:37ac593e9027
       
     1 //
       
     2 //  MapConfigViewController.h
       
     3 //  HedgewarsMobile
       
     4 //
       
     5 //  Created by Vittorio on 22/04/10.
       
     6 //  Copyright 2010 __MyCompanyName__. All rights reserved.
       
     7 //
       
     8 
       
     9 #import <UIKit/UIKit.h>
       
    10 #import "SDL_net.h"
       
    11 
       
    12 @interface MapConfigViewController : UIViewController {
       
    13     TCPsocket sd, csd;
       
    14     NSInteger maxHogs;
       
    15     unsigned char map[128*32];
       
    16 
       
    17     UIButton *previewButton;
       
    18     NSString *seedCommand;
       
    19 }
       
    20 
       
    21 @property (nonatomic) NSInteger maxHogs;
       
    22 @property (nonatomic,retain) UIButton *previewButton;
       
    23 @property (nonatomic,retain) NSString *seedCommand;
       
    24 
       
    25 -(IBAction) updatePreview;
       
    26 -(void) engineProtocol:(NSInteger) port;
       
    27 
       
    28 @end