21 lines
443 B
C#
21 lines
443 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 EntProtoId Action = "ActionChangeVoiceMask";
|
|
|
|
[DataField]
|
|
public EntityUid? ActionEntity;
|
|
}
|