Files
tbd-station-14/Content.Server/DeviceNetwork/Components/ApcNetworkComponent.cs
2022-02-08 19:42:49 +11:00

20 lines
578 B
C#

using Content.Server.DeviceNetwork.Systems;
using Content.Server.NodeContainer.Nodes;
using Robust.Shared.Analyzers;
using Robust.Shared.GameObjects;
using Robust.Shared.ViewVariables;
namespace Content.Server.DeviceNetwork.Components
{
[RegisterComponent]
[Friend(typeof(ApcNetworkSystem))]
[ComponentProtoName("ApcNetworkConnection")]
public class ApcNetworkComponent : Component
{
/// <summary>
/// The node Group the ApcNetworkConnection is connected to
/// </summary>
[ViewVariables] public Node? ConnectedNode;
}
}