2021-10-24 01:23:19 +02:00
|
|
|
using Content.Server.DeviceNetwork.Systems;
|
|
|
|
|
using Content.Server.NodeContainer.Nodes;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.DeviceNetwork.Components
|
|
|
|
|
{
|
|
|
|
|
[RegisterComponent]
|
2022-06-07 15:26:28 +02:00
|
|
|
[Access(typeof(ApcNetworkSystem))]
|
2022-02-08 00:42:49 -08:00
|
|
|
[ComponentProtoName("ApcNetworkConnection")]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class ApcNetworkComponent : Component
|
2021-10-24 01:23:19 +02:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The node Group the ApcNetworkConnection is connected to
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ViewVariables] public Node? ConnectedNode;
|
|
|
|
|
}
|
|
|
|
|
}
|