예제 #1
0
파일: Ust.cs 프로젝트: MiranaM/roulade
 public static void SetLyricPrev(string lyric)
 {
     if (hasPrev)
     {
         uPrev.SetLyric(lyric);
     }
 }
예제 #2
0
파일: Ust.cs 프로젝트: MiranaM/roulade
 public static void SetLyricNext(string lyric)
 {
     if (hasNext)
     {
         uNext.SetLyric(lyric);
     }
 }
예제 #3
0
파일: Ust.cs 프로젝트: MiranaM/roulade
        public static void SetLyric(string[] lyric)
        {
            int i = 0;

            foreach (string number in Numbers)
            {
                UNote note = uNotes[number];
                note.SetLyric(lyric[i]);
                i++;
            }
        }