Files
tbd-station-14/Content.Server/Speech/Components/IAccentComponent.cs
2021-06-09 22:19:39 +02:00

14 lines
398 B
C#

#nullable enable
namespace Content.Server.Speech.Components
{
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);
}
}