예제 #1
0
 public bool Check_Typed(char letter)
 {
     if (words.Count > 0)
     {
         if (words[0].Check_Typed(letter))
         {
             AudioController.Get_AudioController().PlayOneShot(AudioController.SFX_Code.Type_q, 0.1f);
         }
         wDisplay.Update_typingText(words[0]);
         return(true);
     }
     return(false);
 }