project_files/HedgewarsMobile/Classes/AudioManagerController.m
changeset 6908 896ed2afcfb8
parent 6871 5aadbfe02613
child 8441 a00b0fa0dbd7
equal deleted inserted replaced
6907:a2f9a9a62dc5 6908:896ed2afcfb8
    36         mainInstance = [[self alloc] init];
    36         mainInstance = [[self alloc] init];
    37     return mainInstance;
    37     return mainInstance;
    38 }
    38 }
    39 
    39 
    40 -(id) init {
    40 -(id) init {
    41     if (self = [super init]) {
    41     if ((self = [super init])) {
    42         self.backgroundMusic = nil;
    42         self.backgroundMusic = nil;
    43         self.clickSound = -1;
    43         self.clickSound = -1;
    44         self.backSound = -1;
    44         self.backSound = -1;
    45         self.selSound = -1;
    45         self.selSound = -1;
    46 
    46