using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Power.Components { [RegisterComponent] public sealed class CablePlacerComponent : Component { [ViewVariables] [DataField("cablePrototypeID", customTypeSerializer:typeof(PrototypeIdSerializer))] public string? CablePrototypeId = "CableHV"; [ViewVariables] [DataField("blockingWireType")] public CableType BlockingCableType = CableType.HighVoltage; } }