fish-station/Content.Server/VoiceMask/VoiceMaskerComponent.cs
Vigers Ray 5775d4cdef
Merge sunrise build (#2)
* commit
2024-05-31 02:16:18 +03:00

23 lines
508 B
C#

using Content.Shared.Speech;
using Robust.Shared.Prototypes;
namespace Content.Server.VoiceMask;
[RegisterComponent]
public sealed partial class VoiceMaskerComponent : Component
{
[DataField]
public string LastSetName = "Unknown";
[DataField]
public ProtoId<SpeechVerbPrototype>? LastSpeechVerb;
[DataField]
public string? LastSetVoice; // Sunrise-TTS
[DataField]
public EntProtoId Action = "ActionChangeVoiceMask";
[DataField]
public EntityUid? ActionEntity;
}