예제 #1
0
 public Lyrics(SyllableType type, string text)
     : this(type, text, null)
 {
 }
예제 #2
0
 public Syllable(SyllableType type, string text)
 {
     Type = type;
     Text = text;
 }
예제 #3
0
 public Lyrics(SyllableType type, string text, double?defaultY)
 {
     Syllables.Add(new Syllable(type, text));
     defaultYPosition = defaultY;
 }
예제 #4
0
 public static bool IsVowel(this SyllableType st) =>
 st == SyllableType.Vowel || st == SyllableType.Semivowel;