AtmosMonitoringConsoleDeviceComponent.cs 681 B

123456789101112131415161718192021
  1. using Content.Shared.Prototypes;
  2. using Robust.Shared.GameStates;
  3. using Robust.Shared.Prototypes;
  4. namespace Content.Shared.Atmos.Components;
  5. /// <summary>
  6. /// Entities with this component appear on the
  7. /// nav maps of atmos monitoring consoles
  8. /// </summary>
  9. [RegisterComponent, NetworkedComponent]
  10. public sealed partial class AtmosMonitoringConsoleDeviceComponent : Component
  11. {
  12. /// <summary>
  13. /// Prototype ID for the blip used to represent this
  14. /// entity on the atmos monitoring console nav map.
  15. /// If null, no blip is drawn (i.e., null for pipes)
  16. /// </summary>
  17. [DataField, ViewVariables]
  18. public ProtoId<NavMapBlipPrototype>? NavMapBlip = null;
  19. }