23 lines
701 B
C#
23 lines
701 B
C#
using Content.Server.Power.EntitySystems;
|
|
|
|
namespace Content.Server.Power.Components
|
|
{
|
|
[RegisterComponent]
|
|
[Access(typeof(ExtensionCableSystem))]
|
|
public sealed 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;
|
|
}
|
|
}
|