Esempio n. 1
0
 public MusicalNote_Eighth(GuitarStringType stringType, int noteValue, string id)
 {
     NoteID       = "Eighth_" + id;
     NoteValue    = noteValue;
     StringOfNote = ClassicalGuitar.EnumToObj(stringType);
 }
Esempio n. 2
0
 public MusicalNote_Half(GuitarStringType stringType, int noteValue, string id)
 {
     NoteValue    = noteValue;
     StringOfNote = ClassicalGuitar.EnumToObj(stringType);
     NoteID       = "Half_" + id;
 }