Files
tbd-station-14/Content.Server/Power/Components/CableVisComponent.cs
Pieter-Jan Briers 103bc19508 Pow3r: stage 1 (#4208)
Co-authored-by: 20kdc <asdd2808@gmail.com>
2021-07-04 18:11:52 +02:00

17 lines
415 B
C#

using Robust.Shared.GameObjects;
using Robust.Shared.Serialization.Manager.Attributes;
using Robust.Shared.ViewVariables;
namespace Content.Server.Power.Components
{
[RegisterComponent]
public sealed class CableVisComponent : Component
{
public override string Name => "CableVis";
[ViewVariables(VVAccess.ReadWrite)]
[DataField("node")]
public string? Node;
}
}