home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / Apps / SoundApps / SimpleSoundMixingExample / Source / MixController.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  261 b   |  21 lines

  1.  
  2. #import <appkit/appkit.h>
  3.  
  4. @interface MixController:Object
  5. {
  6.     id    snd1;
  7.     id    snd2;
  8.     id    snd1Text;
  9.     id    snd2Text;
  10.     id    snd1Stream;
  11.     id    snd2Stream;
  12.     id  sndOut;
  13.     int tag;
  14. }
  15.  
  16. - play:sender;
  17. - setSound1Name:sender;
  18. - setSound2Name:sender;
  19.  
  20. @end
  21.