Skip to content

Instantly share code, notes, and snippets.

@talentless
Created October 26, 2011 17:57
Show Gist options
  • Save talentless/1317156 to your computer and use it in GitHub Desktop.
Save talentless/1317156 to your computer and use it in GitHub Desktop.
Extending CocosDenshion Using Categories
#import "CDAudioManager.h"
@interface CDAudioManager (ResetBackgroundMusic)
-(void) resetBackgroundMusic:(CDLongAudioSource*)preloadedAudioSource;
@end
@implementation CDAudioManager (ResetBackgroundMusic)
-(void) resetBackgroundMusic:(CDLongAudioSource*)preloadedAudioSource {
backgroundMusic = preloadedAudioSource;
backgroundMusic.delegate = self;
[self resumeBackgroundMusic];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment