Example #1
0
 public void RaisePlay(NAudioPlaying Played)
 {
     var copied = OnSoundPlay;
     if (copied != null)
         copied(Played);
 }
Example #2
0
 public void RaiseStop(NAudioPlaying Stopped)
 {
     var copied = OnSoundStop;
     if (copied != null)
         copied(Stopped);
 }
Example #3
0
 public iActiveSoundObject Play(bool playlooped, float volume)
 {
     var result = new NAudioPlaying(this);
     //ConnectedDriver.Mixer.AddInputStream(result.WStream);
     return result;
 }