2021-07-17 02:37:09 +02:00
|
|
|
|
namespace Content.Server.Speech.Components
|
2020-08-25 17:09:39 +02:00
|
|
|
|
{
|
|
|
|
|
|
internal interface IAccentComponent
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Transforms a message with the given Accent
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="message">The spoken message</param>
|
|
|
|
|
|
/// <returns>The message after the transformation</returns>
|
|
|
|
|
|
public string Accentuate(string message);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|