예제 #1
0
파일: Key.cs 프로젝트: praeclarum/NMusic
 public void Add(int degree, Chord chord, int beats = 2, ProgressionAction action = ProgressionAction.None)
 {
     pps.Add(new ProgressionNotes {
         Degree = degree,
         Chord  = chord,
         Beats  = beats,
         Action = action,
     });
 }
예제 #2
0
파일: Key.cs 프로젝트: praeclarum/NMusic
 public Progression(ProgressionAction action = ProgressionAction.None)
 {
     Action = action;
 }