Files

17 lines
494 B
C#
Raw Permalink Normal View History

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