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