fish-station/Content.Server/VoiceMask/VoiceMaskerComponent.cs
2026-01-03 19:39:41 +03:00

13 lines
370 B
C#

using Content.Shared._Sunrise.TTS;
using Content.Shared.Humanoid;
using Robust.Shared.Prototypes;
namespace Content.Server.VoiceMask;
[RegisterComponent]
public sealed partial class VoiceMaskerComponent : Component
{
[DataField]
[ViewVariables(VVAccess.ReadWrite)]
public ProtoId<TTSVoicePrototype> VoiceId = SharedHumanoidAppearanceSystem.DefaultVoice;
}