Initial commit
This commit is contained in:
17
Ryuclaw.Shared/Speech/ISpeech.cs
Normal file
17
Ryuclaw.Shared/Speech/ISpeech.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Ryuclaw.Shared.Speech
|
||||
{
|
||||
public interface ISpeech
|
||||
{
|
||||
public void SetRate(float rate);
|
||||
public void SetPitch(float pitch);
|
||||
public List<string> GetVoices();
|
||||
public void SetVoice(string name);
|
||||
public void Speak(string text);
|
||||
public void Stop();
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user