Speech Recognition
The Speech Recognition API functionality is currently limited to two simple method calls. It may potentially be expanded in the future to support complex custom grammar trees.
Usage
Generic Speech
If you want to listen for any speech you can use the below method. It should be noted that this method yields a low accuracy result, and isn't perfect. You should search the returned string for keywords.
SpeechRecognition.Listen( ( output ) => Log.Info( output ) );
Phrases
var choices = new string[] {
"Jump",
"Move Left",
"Move Right"
};
SpeechRecognition.Listen( ( output ) => Log.Info( output ), choices );