Files
tbd-station-14/Content.Server/GameObjects/Components/Mobs/Speech/SpeechComponent.cs
DrSmugleaf 87f9a6e167 Reorganize commands into the Commands folder (#2679)
* Reorganize commands into the Commands folder

* RIDER
2020-12-03 13:40:47 +11:00

13 lines
398 B
C#

namespace Content.Server.GameObjects.Components.Mobs.Speech
{
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);
}
}