示例#1
0
 private void CheckCommandTimeout()
 {
     if (CommandInitiated && IsSpeechTimeout(DateTime.UtcNow))
     {
         Console.WriteLine("Command timeout has occurred since the last command, resetting command initiated to false.");
         CommandInitiated = false;
         ComputerFeedbackPlayer.PlayComputerTimeout();
     }
 }