| 12345678910111213141516171819202122 |
- 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;
- /// <summary>
- /// The max distance from a <see cref="ExtensionCableProviderComponent"/> that this can receive power from.
- /// </summary>
- [ViewVariables(VVAccess.ReadWrite)]
- [DataField("receptionRange")]
- public int ReceptionRange { get; set; } = 3;
- }
- }
|