1
0

ApcNetworkComponent.cs 494 B

12345678910111213141516
  1. using Content.Server.DeviceNetwork.Systems;
  2. using Content.Server.NodeContainer.Nodes;
  3. namespace Content.Server.DeviceNetwork.Components
  4. {
  5. [RegisterComponent]
  6. [Access(typeof(ApcNetworkSystem))]
  7. [ComponentProtoName("ApcNetworkConnection")]
  8. public sealed partial class ApcNetworkComponent : Component
  9. {
  10. /// <summary>
  11. /// The node Group the ApcNetworkConnection is connected to
  12. /// </summary>
  13. [ViewVariables] public Node? ConnectedNode;
  14. }
  15. }