16 lines
532 B
C#
16 lines
532 B
C#
using Robust.Shared.Prototypes;
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
|
|
|
|
namespace Content.Server.VoiceMask;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class VoiceMaskerComponent : Component
|
|
{
|
|
[ViewVariables(VVAccess.ReadWrite)] public string LastSetName = "Unknown";
|
|
|
|
[DataField("action", customTypeSerializer: typeof(PrototypeIdSerializer<EntityPrototype>))]
|
|
public string Action = "ActionChangeVoiceMask";
|
|
|
|
[DataField("actionEntity")] public EntityUid? ActionEntity;
|
|
}
|