Example #1
0
 /// <summary>
 /// Constructor
 /// <para>Use if you want to store a <see cref="SongModel.Chord"/>.</para>
 /// </summary>
 /// <param name="chord">Chord that will be stored in this INote instance.</param>
 public INote(Chord chord)
 {
     Chord  = chord;
     Note   = null;
     IsNote = false;
 }