Files
crystall-punk-14/Content.Server/VoiceMask/VoiceMaskerComponent.cs

21 lines
443 B
C#
Raw Normal View History

using Content.Shared.Speech;
using Robust.Shared.Prototypes;
2022-09-28 19:22:27 -07:00
namespace Content.Server.VoiceMask;
[RegisterComponent]
public sealed partial class VoiceMaskerComponent : Component
2022-09-28 19:22:27 -07:00
{
[DataField]
public string LastSetName = "Unknown";
2022-09-28 19:22:27 -07:00
[DataField]
public ProtoId<SpeechVerbPrototype>? LastSpeechVerb;
[DataField]
public EntProtoId Action = "ActionChangeVoiceMask";
[DataField]
public EntityUid? ActionEntity;
2022-09-28 19:22:27 -07:00
}