Files
crystall-punk-14/Content.Server/DeviceNetwork/Components/ApcNetworkComponent.cs
Vera Aguilera Puerto c5f7c61041 Fix some friend access violations by allowing others access. (#8594)
Rename Friend attribute to Access attribute.
Updates submodule to v0.21.0.0 as well.
2022-06-07 11:30:27 +02:00

17 lines
486 B
C#

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