project_files/HedgewarsMobile/Classes/CreationChamber.h
branchios-develop
changeset 12872 00215a7ec5f5
parent 10108 c68cf030eded
equal deleted inserted replaced
12871:2c06b1120749 12872:00215a7ec5f5
    22 
    22 
    23 @interface CreationChamber : NSObject {
    23 @interface CreationChamber : NSObject {
    24 
    24 
    25 }
    25 }
    26 
    26 
    27 +(void) createFirstLaunch;
    27 + (void)createFirstLaunch;
    28 +(void) createSettings;
    28 + (void)createSettings;
    29 
    29 
    30 +(void) createTeamNamed:(NSString *)nameWithoutExt;
    30 + (void)createTeamNamed:(NSString *)nameWithoutExt;
    31 +(void) createTeamNamed:(NSString *)nameWithoutExt ofType:(NSInteger) type;
    31 + (void)createTeamNamed:(NSString *)nameWithoutExt ofType:(NSInteger)type;
    32 +(void) createTeamNamed:(NSString *)nameWithoutExt ofType:(NSInteger) type controlledByAI:(BOOL) shouldAITakeOver;
    32 + (void)createTeamNamed:(NSString *)nameWithoutExt ofType:(NSInteger)type controlledByAI:(BOOL) shouldAITakeOver;
    33 
    33 
    34 +(void) createWeaponNamed:(NSString *)nameWithoutExt;
    34 + (void)createWeaponNamed:(NSString *)nameWithoutExt;
    35 +(void) createWeaponNamed:(NSString *)nameWithoutExt ofType:(NSInteger) type;
    35 + (void)createWeaponNamed:(NSString *)nameWithoutExt ofType:(NSInteger)type;
    36 
    36 
    37 +(void) createSchemeNamed:(NSString *)nameWithoutExt;
    37 + (void)createSchemeNamed:(NSString *)nameWithoutExt;
    38 +(void) createSchemeNamed:(NSString *)nameWithoutExt ofType:(NSInteger) type;
    38 + (void)createSchemeNamed:(NSString *)nameWithoutExt ofType:(NSInteger)type;
    39 
    39 
    40 @end
    40 @end
    41 
    41