2024-03-28 06:36:43 +00:00
|
|
|
using Content.Shared.Speech;
|
2023-09-08 18:16:05 -07:00
|
|
|
using Robust.Shared.Prototypes;
|
2022-09-28 19:22:27 -07:00
|
|
|
|
|
|
|
|
namespace Content.Server.VoiceMask;
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class VoiceMaskerComponent : Component
|
2022-09-28 19:22:27 -07:00
|
|
|
{
|
2024-03-28 06:36:43 +00:00
|
|
|
[DataField]
|
|
|
|
|
public string LastSetName = "Unknown";
|
2022-09-28 19:22:27 -07:00
|
|
|
|
2024-03-28 06:36:43 +00:00
|
|
|
[DataField]
|
|
|
|
|
public ProtoId<SpeechVerbPrototype>? LastSpeechVerb;
|
2023-09-08 18:16:05 -07:00
|
|
|
|
2024-03-28 06:36:43 +00:00
|
|
|
[DataField]
|
|
|
|
|
public EntProtoId Action = "ActionChangeVoiceMask";
|
|
|
|
|
|
|
|
|
|
[DataField]
|
|
|
|
|
public EntityUid? ActionEntity;
|
2022-09-28 19:22:27 -07:00
|
|
|
}
|