Ejemplo n.º 1
0
        public override void PlaySoundSample(ushort number, SoundAction action, byte volume, byte repeats, SoundFinishedCallback callback)
        {
            if (PassSound)
            {
                side.PlaySoundSample(number, action, volume, repeats, callback);
            }

            base.PlaySoundSample(number, action, volume, repeats, callback);
        }
Ejemplo n.º 2
0
 public virtual void PlaySoundSample(ushort number, SoundAction action, byte volume, byte repeats, SoundFinishedCallback callback)
 {
     next.PlaySoundSample(number, action, volume, repeats, callback);
 }