project_files/HedgewarsMobile/Classes/ServerSetup.m
changeset 5206 db775bddf771
parent 5201 7b9aa7aac336
child 5483 fc755bb8096d
equal deleted inserted replaced
5205:78138ae93820 5206:db775bddf771
    31 @implementation ServerSetup
    31 @implementation ServerSetup
    32 @synthesize systemSettings;
    32 @synthesize systemSettings;
    33 
    33 
    34 -(id) init {
    34 -(id) init {
    35     if (self = [super init]) {
    35     if (self = [super init]) {
    36         NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfFile:SETTINGS_FILE()];
    36         self.systemSettings = nil; //nsuserdefault
    37         self.systemSettings = dict;
       
    38         [dict release];
       
    39     }
    37     }
    40     return self;
    38     return self;
    41 }
    39 }
    42 
    40 
    43 -(void) dealloc {
    41 -(void) dealloc {