Example #1
0
 public static StereoIntSoundSample Mix(StereoIntSoundSample A, StereoIntSoundSample B)
 {
     return new StereoIntSoundSample((int)((A.Left + B.Left) / 2), (int)((A.Right + B.Right) / 2));
 }