Files

18 lines
322 B
C#
Raw Permalink Normal View History

2023-08-25 14:39:31 +02:00
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();
}
}