using Content.Server.Power.EntitySystems; namespace Content.Server.Power.Components { [RegisterComponent] [Access(typeof(ExtensionCableSystem))] public sealed partial class ExtensionCableReceiverComponent : Component { [ViewVariables] public ExtensionCableProviderComponent? Provider { get; set; } [ViewVariables] public bool Connectable = false; /// /// The max distance from a that this can receive power from. /// [ViewVariables(VVAccess.ReadWrite)] [DataField("receptionRange")] public int ReceptionRange { get; set; } = 3; } }