Example #1
0
 public static void SetLyricPrev(string lyric)
 {
     if (hasPrev)
     {
         uPrev.SetLyric(lyric);
     }
 }
Example #2
0
 public static void SetLyricNext(string lyric)
 {
     if (hasNext)
     {
         uNext.SetLyric(lyric);
     }
 }
Example #3
0
        public static void SetLyric(string[] lyric)
        {
            int i = 0;

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