18 lines
322 B
C#
18 lines
322 B
C#
|
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();
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
|