コード例 #1
0
ファイル: TeeFilter.cs プロジェクト: hackerlank/zlr
        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);
        }
コード例 #2
0
ファイル: FilterBase.cs プロジェクト: hackerlank/zlr
 public virtual void PlaySoundSample(ushort number, SoundAction action, byte volume, byte repeats, SoundFinishedCallback callback)
 {
     next.PlaySoundSample(number, action, volume, repeats, callback);
 }