Files
tbd-station-14/Content.Server/Speech/Components/FrenchAccentComponent.cs
2024-02-14 16:52:24 -08:00

12 lines
345 B
C#

using Content.Server.Speech.EntitySystems;
namespace Content.Server.Speech.Components;
/// <summary>
/// French accent replaces spoken letters. "th" becomes "z" and "H" at the start of a word becomes "'".
/// </summary>
[RegisterComponent]
[Access(typeof(FrenchAccentSystem))]
public sealed partial class FrenchAccentComponent : Component
{ }