// // Siundplayer.h // QTSound // // Created by Ashley on 14/01/2007. // Copyright 2007 __MyCompanyName__. All rights reserved. // #import #import @interface Soundplayer : NSObject { id _delegate; NSArray *_sounds; int _counter; } - (id) initWithSounds:(NSArray *)sounds; - (void) setSounds:(NSArray *)sounds; - (NSArray *)sounds; - (void) setDelegate:(id)delegate; - (id)delegate; - (int) counter; - (void) incCounter; - (void) setCounter:(int)counter; - (void) play; - (void) nextSound:(NSNotification *)sender; @end