namespace Content.Server.GameObjects.Components.Mobs.Speech
{
internal interface IAccentComponent
{
///
/// Transforms a message with the given Accent
///
/// The spoken message
/// The message after the transformation
public string Accentuate(string message);
}
}