equal
deleted
inserted
replaced
19 */ |
19 */ |
20 |
20 |
21 |
21 |
22 #import <Foundation/Foundation.h> |
22 #import <Foundation/Foundation.h> |
23 |
23 |
24 void createSettings (void); |
24 @interface CreationChamber : NSObject { |
25 void createTeamNamed (NSString *nameWithoutExt); |
25 |
26 void createWeaponNamed (NSString *nameWithoutExt, int type); |
26 } |
27 void createSchemeNamed (NSString *nameWithoutExt, int type); |
27 |
|
28 +(void) createSettings; |
|
29 |
|
30 +(void) createTeamNamed:(NSString *)nameWithoutExt; |
|
31 +(void) createTeamNamed:(NSString *)nameWithoutExt ofType:(NSInteger) type; |
|
32 +(void) createTeamNamed:(NSString *)nameWithoutExt ofType:(NSInteger) type controlledByAI:(BOOL) flag; |
|
33 |
|
34 +(void) createWeaponNamed:(NSString *)nameWithoutExt; |
|
35 +(void) createWeaponNamed:(NSString *)nameWithoutExt ofType:(NSInteger) type; |
|
36 |
|
37 +(void) createSchemeNamed:(NSString *)nameWithoutExt; |
|
38 +(void) createSchemeNamed:(NSString *)nameWithoutExt ofType:(NSInteger) type; |
|
39 |
|
40 @end |
|
41 |