project_files/HedgewarsMobile/Classes/GameInterfaceBridge.h
branchios-develop
changeset 12872 00215a7ec5f5
parent 11572 28afdaa159cb
equal deleted inserted replaced
12871:2c06b1120749 12872:00215a7ec5f5
    25     UIView *blackView;
    25     UIView *blackView;
    26     NSString *savePath;
    26     NSString *savePath;
    27     NSInteger port;
    27     NSInteger port;
    28 }
    28 }
    29 
    29 
    30 @property (nonatomic,retain) UIView *blackView;
    30 @property (nonatomic, strong) UIView *blackView;
    31 @property (nonatomic,retain) NSString *savePath;
    31 @property (nonatomic, strong) NSString *savePath;
    32 @property (assign) NSInteger port;
    32 @property (assign) NSInteger port;
    33 
    33 
    34 +(void) startLocalGame:(NSDictionary *)withOptions;
    34 + (void)startLocalGame:(NSDictionary *)withOptions;
    35 +(void) startSaveGame:(NSString *)atPath;
    35 + (void)startSaveGame:(NSString *)atPath;
    36 +(void) startMissionGame:(NSString *)withScript;
    36 + (void)startMissionGame:(NSString *)withScript;
    37 +(void) startCampaignMissionGameWithScript:(NSString *)missionScriptName forCampaign:(NSString *)campaignName;
    37 + (void)startCampaignMissionGameWithScript:(NSString *)missionScriptName forCampaign:(NSString *)campaignName;
    38 +(void) startSimpleGame;
    38 + (void)startSimpleGame;
    39 
    39 
    40 +(void) registerCallingController:(UIViewController *)controller;
    40 + (void)registerCallingController:(UIViewController *)controller;
    41 
    41 
    42 @end
    42 @end