using Content.Shared.Speech;
using Robust.Shared.Prototypes;
namespace Content.Server.VoiceMask;
[RegisterComponent]
public sealed partial class VoiceMaskerComponent : Component
{
[ViewVariables(VVAccess.ReadWrite), DataField]
public string LastSetName = "Неизвестный"; // WD translate
[ViewVariables(VVAccess.ReadWrite)]
public string? LastSetVoice; // tts
[DataField]
public ProtoId<SpeechVerbPrototype>? LastSpeechVerb;
public EntProtoId Action = "ActionChangeVoiceMask";
public EntityUid? ActionEntity;
}