コード例 #1
0
 public void PlayInRythm(MusicStyle musicStyle)
 {
     foreach (var note in Notes)
     {
         note.PlayWithSound(musicStyle.BPM);
     }
 }
コード例 #2
0
ファイル: Song.cs プロジェクト: jolsommer/DTA-Synthetizer
 public void PlayInRythm(MusicStyle musicStyle)
 {
     foreach (var track in Tracks)
     {
         track.PlayInRythm(musicStyle);
     }
 }