Files
tbd-station-14/Content.Server/Speech/Components/IAccentComponent.cs
2021-07-16 17:37:09 -07:00

13 lines
381 B
C#

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);
}
}