예제 #1
0
 public void PlayInRythm(MusicStyle musicStyle)
 {
     foreach (var note in Notes)
     {
         note.PlayWithSound(musicStyle.BPM);
     }
 }
예제 #2
0
 public void PlayInRythm(MusicStyle musicStyle)
 {
     foreach (var track in Tracks)
     {
         track.PlayInRythm(musicStyle);
     }
 }