NetworkConfiguratorActiveLinkOverlayComponent.cs 455 B

123456789101112131415
  1. namespace Content.Client.NetworkConfigurator;
  2. /// <summary>
  3. /// This is used for...
  4. /// </summary>
  5. [RegisterComponent]
  6. public sealed partial class NetworkConfiguratorActiveLinkOverlayComponent : Component
  7. {
  8. /// <summary>
  9. /// The entities linked to this network configurator.
  10. /// This could just... couldn't this just be grabbed
  11. /// if DeviceList was shared?
  12. /// </summary>
  13. public HashSet<EntityUid> Devices = new();
  14. }