예제 #1
0
파일: Note.cs 프로젝트: Daraciel/MidiPro
 public Note(Beat.Beat beat = null) : this()
 {
     this.Beat = beat;
 }
예제 #2
0
파일: Voice.cs 프로젝트: Daraciel/MidiPro
 public void AddBeat(Beat.Beat beat)
 {
     beat.Voice = this;
     Beats.Add(beat);
 }