示例#1
0
 private void speak(string handler, string sender, string text, IRCCommand cmd = null)
 {
     if (handler != "(Debug)")
     {
         SpeechLibWrapper.Speak(sender + " : " + text);
     }
 }
示例#2
0
 private void configChanged(ConfigChangedEvent e)
 {
     config.Save();
     SpeechLibWrapper.SetVolume(config.ttsVolume);
     client.connect(config);
 }